HTML CSS examples for HTML Tag:span
Set Margin-Top for span element
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> span {<!--from w w w . jav a 2 s . com--> margin:100px; } </style> </head> <body> <p> <span>Hello World</span> Blah </p> </body> </html>