Css3 13
Cascading Style Sheet
HTML Pseudo Elements And Classes
The HTML Elements are categorized in Real Elements, Pseudo Elements, Real Classes,Pseudo Class. Example of Real Elements and Real Classes, <html> <head> <title>Real Elements And Classes</title> <style> .author-name{ color : green; } </style> </head> <body> <div class="author-name"> Sandeep </div> </body></html> Firebug Inspection: The Firefox and Firebug will display, Now add a css for hover attribute, […]