자바스크립트 maxHeight 속성 통사론
기능: 요소의 최대 높이를 설정합니다.
구문: Object.style.maxHeight=length|%
자바스크립트 maxHeight 속성 예
<html> <head> <meta charset="UTF-8"> <script type="text/javascript"> function setMaxHeight() { document.getElementById("p1").style.maxHeight="10px"; } </script> </head> <body> <p id="p1">这是一些文本内容,这是一些文本内容,这是一些文本内容,这是一些文本内容</p> <input type="button" onclick="setMaxHeight()" value="Set max height" /> </body> </html>
인스턴스 실행 »
온라인 인스턴스를 보려면 "인스턴스 실행" 버튼을 클릭하세요