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

Материал из Web эксперт
Версия от 11:15, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

"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>