border在html中是邊框的意思。 border是邊框屬性,可以在一個宣告中設定所有邊框樣式,語法為【Object.style.border=borderWidth borderStyle borderColor】。
本教學操作環境:windows7系統、html5版,DELL G3電腦。
border在html中是邊框的意思。
border
屬性在一個宣告中設定所有邊框屬性。
語法:
Object.style.border=borderWidth borderStyle borderColor
實例
#本範例改變元素的邊框:
<html> <head> <style type="text/css"> p { border: thin dotted #FF0000 } </style> <script type="text/javascript"> function changeBorder() { document.getElementById("p1").style.border="thick solid #0000FF"; } </script> </head> <body> <input type="button" onclick="changeBorder()" value="Change border" /> <p id="p1">This is a paragraph</p> </body> </html>
#相關學習推薦:html影片教學
以上是border在html中是什麼意思的詳細內容。更多資訊請關注PHP中文網其他相關文章!