运行 ❯
获取您的
自己
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <p style="background:red;min-width:600px;" id="myP">The minimum width of this paragraph is set to 600px.</p> <button type="button" onclick="myFunction()">Return min width</button> <script> function myFunction() { alert(document.getElementById("myP").style.minWidth); } </script> </body> </html>