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 uygulayarak border-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; } Kendiniz deneyin » 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. C