max
英[mæks] 美[mæks]
adv.Jusqu'à
hauteur
英[haɪt] 美[haɪt]
n
Pl. oural : hauteurs
propriété javascript maxHeight syntaxe
Fonction : Définissez la hauteur maximale de l'élément.
Syntaxe : Object.style.maxHeight=length|%
propriété javascript maxHeight exemple
<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>
Exécuter l'instance »
Cliquez sur le bouton « Exécuter l'instance » pour afficher l'instance en ligne