如何在HTML中显示元素边框的粗细?

在HTML中使用border属性显示边框的粗细。

注意-HTML5不支持此属性。

示例

您可以尝试运行以下代码以了解如何在HTML中实现border属性-

<!DOCTYPE html>

<html>

   <body>

      <h2>Cricketers</h2>

      <table style="width:100%" border="1">

         <th>Name</th>

         <tr>

            <td>Sachin Tendulkar</td>

         </tr>

         <tr>

            <td>Virat Kohli</td>

         </tr>

      </table>

   </body>

</html>

请改用CSS,因为border属性在HTML5中已弃用。

<!DOCTYPE html>

<html>

   <head>

      <style>

         table, th, td {

            border: 1px solid black;

         }

      </style>

   </head>

   <body>

      <h2>Cricketers</h2>

      <table style="width:100%">

         <caption>Indian Cricketers</caption>

         <th>Name</th>

         <tr>

            <td>Sachin Tendulkar</td>

         </tr>

         <tr>

            <td>Virat Kohli</td>

         </tr>

      </table>

   </body>

</html>

以上是 如何在HTML中显示元素边框的粗细? 的全部内容, 来源链接: utcz.com/z/322191.html

回到顶部