CSS border-left-style Özelliği
CSS border-left-style
Cssborder-left-style
özelliği ile bir html elemanının sol kenarının kenar tipi belirlenebilir.
Örnek:
Bu örnekle bir div elemanının sol kenarına farklı kenar tipleri tanımlayarak değerlerin etkilerini öğreneceğiz.div.none {
border-left-style: none;
}
div.dotted {
border-left-style: dotted;
}
div.dashed {
border-left-style: dashed;
}
div.solid {
border-left-style: solid;
}
div.double {
border-left-style: double;
}
div.groove {
border-left-style: groove;
}
div.ridge {
border-left-style: ridge;
}
div.inset {
border-left-style: inset;
}
div.outset {
border-left-style: outset;
}
CSS border-left-style nedir nasıl kullanılır
Css border-left-style
özelliği farklı kenar çeşitleri kullanmamızı sağlayan bir özelliktir.
CSS border-left-style Tarayıcı Desteği
CSS Kodu: | |||||
---|---|---|---|---|---|
border-left-style | 1.0 | 5.5 | 1.0 | 1.0 | 9.2 |
CSS border-left-style Değerleri
border-left-style:none|hidden|dotted|dashed|solid|double|groove|ridge|inset|outset|initial|inherit;
Yorumlar
Yorum Gönder