Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

CSS의 border-width 속성

<시간/>

CSS border-width 속성은 요소의 테두리 너비를 지정하는 데 사용됩니다. border-top-width, border-right-width, border-left-width 및 border-right-width 속성을 사용하여 개별 측면의 너비를 설정할 수도 있습니다.

구문

CSS border-width 속성의 구문은 다음과 같습니다-

Selector {
   border-width: /*value*/
}

예시

다음 예는 CSS border-width 속성을 보여줍니다 -

<!DOCTYPE html>
<html>
<head>
<style>
#main {
   border-bottom-width: 20px;
   border-bottom-left-radius: 40px;
   border-bottom-right-radius: 40px;
}
div {
   margin: auto;
   height: 100px;
   width: 80px;
   border-style: double;
   border-width: 5px;
}
div > div {
   margin-top: 15px;
   height: 50px;
   width: 50px;
   border-style: dashed;
   border-color: red;
   border-width: thin;
   text-align: center;
   line-height: 50px;
}
</style>
</head>
<body>
<div id="main">
<div>demo</div>
</div>
</body>
</html>

출력

이것은 다음과 같은 출력을 제공합니다 -

CSS의 border-width 속성

예시

<!DOCTYPE html>
<html>
<head>
<style>
p {
   padding: 2%;
   border-style: ridge;
   border-width: 4px;
   border-color: indianred;
}
q {
   border-style: solid;
   border-width: thin;
   text-align: center;
   font-style: italic;
}
</style>
</head>
<body>
<p>
Student details are covered here.
</p>
<hr>
<q>Education is the most powerful weapon which you can use to change the world.</q>
</body>
</html>

출력

이것은 다음과 같은 출력을 제공합니다 -

CSS의 border-width 속성