border

English [ˈbɔ:rdə(r)]

n. 테두리; 테두리 포함..., 켜기 the side of...

vt.side of..., around..., bordering...

vi. 대략, 인접

3인칭 단수: borders 복수: borders 현재 분사: bordering 과거 시제: bordered 과거분사: bordered

To the left ; wɛθ, wɛtθ]

n.너비

복수형: 너비

CSS 테두리 왼쪽 너비 특성 통사론

기능: 요소의 왼쪽 테두리 너비를 설정합니다.

참고: 테두리 스타일이 없음이 아닌 경우에만 작동합니다. 테두리 스타일이 없으면 테두리 너비는 실제로 0으로 재설정됩니다. 음수 길이 값은 허용되지 않습니다.

참고: 항상 border-left-width 속성보다 먼저 border-style 속성을 선언하세요. 요소는 요소를 획득한 후에만 테두리 너비를 변경할 수 있습니다.

CSS 테두리 왼쪽 너비 특성 예

<html>
<head>
<style type="text/css">
p.one 
{
border-style: solid;
border-left-width: 15px
}
p.two 
{
border-style: solid;
border-left-width: thin
}
</style>
</head>
<body>

<p class="one"><b>注释:</b>"border-left-width" 属性如果单独使用的话是不会起作用的。请首先使用 "border-style" 属性来设置边框。</p>
<p class="two">Some text. Some more text.</p>

</body>
</html>

인스턴스 실행 »

온라인 인스턴스를 보려면 "인스턴스 실행" 버튼을 클릭하세요