Lower font-size for all elements under tag by certain amount - HTML CSS CSS Property

HTML CSS examples for CSS Property:font-size

Description

Lower font-size for all elements under tag by certain amount

Demo Code

ResultView the demo in separate window

<html lang="en">
 <head> 
  <style>
blockquote {<!--from   w  ww.  j  a  va 2 s.  com-->
   font-size:0.8em;
}
</style> 
 </head> 
 <body translate="no"> 
  <h1>Lorem i</h1> 
  <h2>Lorem </h2> 
  <p>Lorem ipsum dolor</p> 
  <blockquote> 
   <h1>Lorem i</h1> 
   <h2>Lorem </h2> 
   <p>Lorem ipsum dolor</p> 
  </blockquote>  
 </body>
</html>

Related Tutorials