1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
<!doctype html> <html> <head> <style type="text/css"> html, body, ul, li { margin: 0; padding: 0; } ul { list-style-position: inside; } li { margin: 1em; } span { position: absolute; top: 1em; right: 1em; } </style> </head> <body> <ul> <li><span>Float</span>Test</li> </ul> </body> </html>