长下划线标记,不是<u> </u>

时间:2013-03-20 00:37:45

标签: html

何,我是否在网站的欢迎部分获得了灰色下划线?我忘记了标签,它基本上在页面/ div / table中创建了一条线,无论你想要什么。

The website(where it says welcome to CLAN):

3 个答案:

答案 0 :(得分:0)

它被称为Horizontal Rule

<hr>

它看起来像这样:


您也可以style it using CSS(正如Stack Overflow所做的那样),如下所示:

hr {
    color: red;
    background-color: red;
    height: 2px;
}

答案 1 :(得分:0)

您要查找的代码是:<hr>

答案 2 :(得分:-2)

<hr>

您可以使用HTML5不支持的4个属性。

  • 对准
  • noshade
  • 尺寸
  • 宽度

我在我的网站上使用它:意味着99%的屏幕宽度和尺寸1。

<hr noshade size=1 width="99%">

请阅读以下文章以了解您的问题: