Vertically align an asterisk (*) with a label in an HTML Form - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:label

Description

Vertically align an asterisk (*) with a label in an HTML Form

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
 </head> <!-- w  w  w  .  j  a  v  a 2s . com-->
 <body> 
  <span style="line-height:30px;vertical-align:middle">*</span> 
  <label>Some text</label>  
 </body>
</html>

Related Tutorials