Other font-size after <br> in a Heading <h1> - HTML CSS CSS Property

HTML CSS examples for CSS Property:font-size

Description

Other font-size after <br> in a Heading <h1>

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <style id="compiled-css" type="text/css">
.name {<!--  w  ww. j a  va 2 s  .co  m-->
   font-size:201%;
}
</style> 
 </head> 
 <body> 
  <h2>Lorem ips<br> <span class="name">Lore</span> </h2>  
 </body>
</html>

Related Tutorials