Crop text and hide text using CSS via <p> hover selector - HTML CSS CSS Layout

HTML CSS examples for CSS Layout:Text

Description

Crop text and hide text using CSS via <p> hover selector

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">
#Yo:hover<!-- w ww.ja v a2 s  .  co  m-->
 {
   display:none;
}

p {
   float:left
}
</style> 
 </head> 
 <body> 
  <p id="Yo">Yo</p> 
  <p>u are a noob</p>  
 </body>
</html>

Related Tutorials