HTML/CSS/CSS Attributes and Javascript Style Properties/border left

Материал из Web эксперт
Перейти к: навигация, поиск

"border-left" Example

   <source lang="html4strict">
   

<html> <head> <style> .style1 {

   border:5px solid #cccccc; 
   border-left:5px solid red; 
   font-family:verdana; 
   font-weight:bold

} .style2 {

   border:"none"; 
   font-family:verdana; 
   font-weight:bold 

} </style> </head> <body> Move mouse in and out to see the style change.

This is a div element.

</body> </html>


     </source>