자바스크립트의 개요Width 속성


  번역 결과:

outline

영어 [ˈaʊtlaən] 미국식 [ˈaʊtˌlaən]

n. 윤곽선, 윤곽선, 윤곽선, 요점, 주요 원리, 모양, 윤곽선, 등고선, 윤곽선 그리기 방법, 스케치(그리기 방법)

vt .Outline; 개요, 스케치, 스케치

3인칭 단수: 개요 복수형: 개요 현재 분사: 개요 과거 시제: 개설됨 과거 분사: 개설됨

width

英[wˈdθ] 美[wˈdθ , wɛθ, wətθ]

n.너비

복수형: 너비

자바스크립트의 개요Width 속성통사론

기능: 요소 주변 윤곽선의 너비를 설정합니다.

구문: ​​Object.style.outlineWidth=얇음|중간|두꺼움|길이

자바스크립트의 개요Width 속성예

<html>
<head>
<style type="text/css">
p
{
border: thin solid #00FF00;
outline: thick solid #FF0000;
}
</style>
<script type="text/javascript">
function changeOutlineWidth()
{
document.getElementById("p1").style.outlineWidth="thin";
}
</script>
</head>
<body>

<input type="button" onclick="changeOutlineWidth()"
value="Change outline width" />

<p id="p1">This is a paragraph</p>

</body>
</html>

인스턴스 실행 »

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

비디오

Q&A