border

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

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

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

vi. 대략, 인접

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

top

English [tɒp] US [tɑ:p]

n 상단, 상단, (책 페이지 등) 상단;

가장 높은

vt.최고에 도달함...; ending

3인칭 단수: tops 복수: tops 현재 분사: topping 과거 시제: topped 과거 분사: topped

CSS 테두리 상단 속성 통사론

기능: 상단 테두리의 모든 속성을 하나의 명령문으로 설정합니다.

지침: border-top-width, border-top-style, border-top-color 속성을 순서대로 설정할 수 있습니다. 값 중 하나를 설정하지 않으면 문제가 없습니다. 예를 들어 border-top:solid #ff0000;도 허용됩니다.

참고: IE7 및 이전 브라우저는 "inherit" 값을 지원하지 않습니다. IE8에는 !DOCTYPE이 필요합니다. IE9는 "상속"을 지원합니다.

CSS 테두리 상단 속성 예

<html>
<head>
<style type="text/css">
p 
{
border-style:solid;
border-top:thick double #ff0000;
}
</style>
</head>

<body>
<p>This is some text in a paragraph.</p>
</body>

</html>

인스턴스 실행 »

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