CSS "Cascading Style Sheets" Lessons


CSS ( Cascading Style Sheets ) - Why CSS ? - Introduction - Css Link Properties / Examples - Css List Properties / Examples - Css Layer Properties / Examples - Css TextBox Properties / Examples - Css Font Properties / Examples - Css Text Properties / Examples - Css Cursor Properties / Examples - Css Background Properties / Examples - Css Table Properties / Examples - Css Scroll Bar Properties / Examples - Tools - Units - Parameters - Template Page - Web Design
Return MainPage / Return Previous Page

Example link

Code:
a:hover {
color:#1E90FF;
background-color :#1E90FF;
text-decoration :none;}



Example Link

Code:
a:hover {
background-color : #1E90FF;
text-decoration :none;}



Example Link

Code:
a:hover {
background-color :#1E90FF;
text-decoration :underline;}

NOT:Alternatifleri için bkz. :Text/text-decoration




Example Link

Code:
a:hover {
background-color :#1E90FF;
color:BLACK;
border:double black;
text-decoration :none;}

NOT:Kenarlýk türünün alternatifleri için bkz. :Font/border-style
Kenarlýk kalýnlýðýnýn alternatifleri için bkz. :Font/border-width





  Example Link...

Code:
a:hover {
background-color : #1E90FF;
display : block;
color : black;
text-decoration :none;}





           Example Link           

Code:
a:hover {
background-image : url(images/a.jpg);
color :#800000;}

NOT:Zemin resmi olarak hareketli veya hareketsiz resim kullanýlabilir.




**** Example Link****

Code:
a:hover {
background-color : #DAA520;
float : right;}





Example Link

Code:
a:hover { background-color : #D7DFDD;
text-transform : uppercase;
font-weight : bold;}



Example Link

Code:
a:hover {zoom:150%;
font-weight : bold;}



Example Link

Code:
a.css-example10{ color:BLACK; height :12px;line-height:14px; border-bottom-style : solid; border-bottom-color : red; border-bottom-width :1px;}
a:hover.css-example10{background-color : yellow; color:BLACK;height : 12px;line-height:14px;text-decoration :none; border-bottom-style : solid;border-bottom-color : red; border-bottom-width :1px;}