CSS border-bottom-style Özelliği
CSS border-bottom-style
Css border-bottom-style özelliği html elemanının alt kenar sitilini belirtmek için kullanılır.Örnek:
Bu örnekte div elemanının alt kenarına sitil özellikleri uygulayarakborder-bottom-style özelliğinin değerlerinin etkilerini öğreneceğiz.div.none {
border-bottom-style: none;
}
div.dotted {
border-bottom-style: dotted;
}
div.dashed {
border-bottom-style: dashed;
}
div.solid {
border-bottom-style: solid;
}
div.double {
border-bottom-style: double;
}
div.groove {
border-bottom-style: groove;
}
div.ridge {
border-bottom-style: ridge;
}
div.inset {
border-bottom-style: inset;
}
div.outset {
border-bottom-style: outset;
}
CSS border-bottom-style nedir nasıl kullanılır
Bu özellikle bir html elemanının alt kenar tipi / sitili değiştirilebilir. Bir çok değere sahip olan bir özelliktir. Kenar tipi kesikli,noktalı,çift çizgi gibi. değerler alır.
CSS border-bottom-style Tarayıcı Desteği
| CSS Kodu: | |||||
|---|---|---|---|---|---|
| border-bottom-style | 1.0 | 5.5 | 1.0 | 1.0 | 9.2 |
CSS border-bottom-style Değerleri
border-bottom-style: none|hidden|dotted|dashed|solid|double|groove|ridge|inset|outset|initial|inherit;
Yorumlar
Yorum Gönder