자바스크립트 캡션사이드 속성


  번역 결과:

caption

English [ˈkæpʃn] US [ˈkæpʃən]

n. 제목, 캡션, 자막; 세 번째 파일

vt. ) 제목 추가, 다음에 자막 추가...

3인칭 단수: captions 복수형: captions 현재 분사: captioning 과거 시제: captioned 과거 분사: captioned

side

英[saəd] 美[saˈd]

n.측면;측면;측면;부측;호의;측면; : 면 복수: 면 현재분사: siding 과거시제: 면 과거분사: 면

자바스크립트 캡션사이드 속성통사론

기능: 테이블 제목의 위치를 ​​설정합니다.

구문: ​​Object.style.captionSide=top|bottom|left|right

자바스크립트 캡션사이드 속성예

<html>
<head>
<style type="text/css">
caption
{
caption-side:bottom; 
}
</style>
<script type="text/javascript">
function moveCaption()
{
document.getElementById('myTable').style.captionSide="right"
}
</script>
</head>
<body>

<table border="1" id="myTable">
  <caption>This is a caption</caption>
  <tr>
    <td>100</td>
    <td>200</td>
  </tr>
  <tr>
    <td>300</td>
    <td>400</td>
  </tr>
</table>
<br />
<input type="button" onclick="moveCaption()"
value="Move table caption">

</body>
</html>

인스턴스 실행 »

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

비디오

Q&A