css 캡션 측 속성 정의 및 사용법
1 CSS에서 캡션 측 속성은 표 제목의 위치를 지정하는 데 사용됩니다. 표 제목은 표 위에 설정할 수 있습니다(기본값).
2 현재 모든 주요 브라우저는 caption-side 속성을 지원하지만 IE8은
css caption-side 속성 값만 지원합니다.
top: 표 제목은 위에 있습니다. the table (기본값)
bottom: 테이블 제목이 테이블 아래에 있음
inherit: 상위 요소에서 캡션 측 속성의 속성 값 상속
구문 형식
caption-side:top / bottom / inherit;
Example
<!doctype html> <html> <head> <meta charset="UTF-8"> <title>css caption-side表格标题属性笔记</title> <style> table{width:400px; height:150px;} caption{caption-side:top;} </style> <head/> <body> <table border="1"> <caption>学生成绩表</caption> <tr><th>学号</th><th>姓名</th><th>性别</th><th>成绩</th></tr> <tr><td>1</td><td>张三</td><td>男</td><td>60</td></tr> <tr><td>2</td><td>李四</td><td>男</td><td>80</td></tr> </table> </body> </html>
실행 중 결과
위 내용은 CSS 캡션 측 속성을 사용하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!