attribut javascript maxWidth
Résultats de traduction:
max
英[mæks]
adv.Maximum
width
英[wɪdθ] 美[wɪdθ, wɪθ, wɪtθ] ; Largeur
pluriel : largeurs
attribut javascript maxWidthsyntaxe
Fonction : Définissez la largeur maximale de l'élément.
Syntaxe : Object.style.maxWidth=length|%
attribut javascript maxWidthexemple
<html> <head> <meta charset="UTF-8"> <script type="text/javascript"> function setMaxWidth() { document.getElementById("p1").style.maxWidth="100px"; } </script> </head> <body> <p id="p1">这是一些文本内容,这是一些文本内容,这是一些文本内容,这是一些文本内容</p> <input type="button" onclick="setMaxWidth()" value="设置最大宽度" /> </body> </html>
Exécuter l'instance »
Cliquez sur le bouton « Exécuter l'instance » pour afficher l'instance en ligne