如何使用HTML制作垂直线?
答案 0 :(得分:520)
在标记周围放置一个<div>
,然后使用CSS对其进行样式设置:
.verticalLine {
border-left: thick solid #ff0000;
}
<div class="verticalLine">
some other content
</div>
答案 1 :(得分:227)
您可以使用水平规则标记创建垂直线。
<hr width="1" size="500">
通过使用最小宽度和大尺寸,水平规则变为垂直规则。
答案 2 :(得分:66)
您可以使用与您希望该行显示完全相同的样式的空<div>
:
<强> HTML:强>
<div class="vertical-line"></div>
具有精确高度(在线覆盖样式):
div.vertical-line{
width: 1px; /* Line width */
background-color: black; /* Line color */
height: 100%; /* Override in-line if you want specific height. */
float: left; /* Causes the line to float to left of content.
You can instead use position:absolute or display:inline-block
if this fits better with your design */
}
<div class="vertical-line" style="height: 45px;"></div>
如果想要3D外观,请设置边框样式:
div.vertical-line{
width: 0px; /* Use only border style */
height: 100%;
float: left;
border: 1px inset; /* This is default border style for <hr> tag */
}
<div class="vertical-line" style="height: 45px;"></div>
您当然也可以尝试使用高级组合:
div.vertical-line{
width: 1px;
background-color: silver;
height: 100%;
float: left;
border: 2px ridge silver ;
border-radius: 2px;
}
<div class="vertical-line" style="height: 45px;"></div>
答案 3 :(得分:30)
您还可以使用HTML水平线<hr />
html, body{height: 100%;}
hr.vertical {
width: 0px;
height: 100%;
/* or height in PX */
}
<hr class="vertical" />
答案 4 :(得分:19)
没有垂直等同于<hr>
元素。但是,您可能想要尝试的一种方法是在分离的任何内容的左侧或右侧使用简单的边框:
#your_col {
border-left: 1px solid black;
}
<div id="your_col">
Your content here
</div>
答案 5 :(得分:15)
注册您的元素。
var vr = document.registerElement('v-r'); // vertical rule please, yes!
* -
在所有自定义元素中都是必需的。
v-r {
height: 100%;
width: 1px;
border-left: 1px solid gray;
/*display: inline-block;*/
/*margin: 0 auto;*/
}
*您可能需要对display:inline-block|inline
进行一些调整,因为inline
不会扩展到包含元素的高度。使用边距将线条置于容器中心。
js: document.body.appendChild(new vr());
or
HTML: <v-r></v-r>
*很遗憾,您无法创建自定义自动关闭代码。
<h1>THIS<v-r></v-r>WORKS</h1>
示例:http://html5.qry.me/vertical-rule
只需将此CSS类应用于指定的元素。
.vr {
height: 100%;
width: 1px;
border-left: 1px solid gray;
/*display: inline-block;*/
/*margin: 0 auto;*/
}
*见上面的注释。
答案 6 :(得分:9)
另一个选择是使用1像素图像,并设置高度 - 此选项允许您将其浮动到您需要的位置。
虽然不是最优雅的解决方案。
答案 7 :(得分:5)
在HTML中没有任何标记可以创建垂直线。
方法:您加载线条图像。然后将其样式设置为"height: 100px ; width: 2px"
方法:您可以使用<td>
代码<td style="border-left: 1px solid red; padding: 5px;"> X </td>
答案 8 :(得分:4)
你可以使用hr(水平线)标签,然后用css旋转90度
hr {
transform:rotate(90deg);
-o-transform:rotate(90deg);
-moz-transform:rotate(90deg);
-webkit-transform:rotate(90deg);
}
答案 9 :(得分:4)
水平线有一个<hr>
标签。可以与CSS一起使用以制作水平线:
.divider{
margin-left: 5px;
margin-right: 5px;
height: 100px;
width: 1px;
background-color: red;
}
<hr class="divider">
width属性确定线的粗细。 height属性确定线的长度。 background-color属性确定线条的颜色。
答案 10 :(得分:4)
要创建一个以div为中心的垂直线,我认为您可以使用此代码。 我想,'容器'的宽度可能是100%。
div.container {
width: 400px;
}
div.vertical-line {
border-left: 1px solid #808080;
height: 350px;
margin-left: auto;
margin-right: auto;
width: 1px;
}
<div class="container">
<div class="vertical-line"> </div>
</div>
答案 11 :(得分:4)
我使用了建议的“hr”代码的组合,这是我的代码的样子:
<hr style="width:0.5px; height:500px; position: absolute; left: 315px;"/>
我只是更改了“左”像素值的值来定位它。 (我使用垂直线排列我网页上的内容,然后将其删除。)
答案 12 :(得分:3)
为什么不使用&amp;#124,这是|
的html特殊字符答案 13 :(得分:3)
如果您的目标是将垂直线放在容器中以分隔并排的子元素(列元素),您可以考虑像这样设置容器样式:
.container > *:not(:first-child) {
border-left: solid gray 2px;
}
这为从第二个孩子开始的所有子元素添加了左边框。换句话说,您可以在相邻的孩子之间获得垂直边框。
>
是一个子选择器。它匹配左侧指定的元素的任何子项。*
是一个通用选择器。它匹配任何类型的元素。:not(:first-child)
表示它不是其父母的第一个孩子。浏览器支持:> * :first-child和:not()
我认为这比简单的.child-except-first {border-left: ...}
规则更好,因为让垂直线来自容器的规则更有意义,而不是不同的子元素&#39;规则。
这是否比使用临时的垂直规则元素(通过设置水平规则等)更好将取决于您的用例,但这至少是一种替代方案。
答案 14 :(得分:3)
还有一种方法:使用 SVG 。
例如:
<svg height="210" width="500">
<line x1="0" y1="0" x2="0" y2="100" style="stroke:rgb(255,0,0);stroke-width:2" />
Sorry, your browser does not support inline SVG.
</svg>
优点:
缺点:
答案 15 :(得分:3)
您可以通过使用任何html元素的高度/宽度来绘制垂直线。
#verticle-line {
width: 1px;
min-height: 400px;
background: red;
}
&#13;
<div id="verticle-line"></div>
&#13;
答案 16 :(得分:3)
div的右侧垂直线
<div style="width:50%">
<div style="border-right:1px solid;">
<ul>
<li>
Empty div didn't shows line
</li>
<li>
Vertical line length depends on the content in the div
</li>
<li>
Here I am using inline style. You can replace it by external style or internal style.
</li>
</ul>
</div>
</div>
垂直线留给div
<div style="width:50%">
<div style="border-left:1px solid;">
<ul>
<li>
Empty div didn't shows line
</li>
<li>
Vertical line length depends on the content in the div
</li>
<li>
Here I am using inline style. You can replace it by external style or internal style.
</li>
</ul>
</div>
</div>
答案 17 :(得分:2)
要添加垂直线,您需要设置小时样式。
现在当你制作一条垂直线时,它将显示在页面中间:
<hr style="width:0.5px;height:500px;"/>
现在将它放在您想要的位置,您可以使用此代码:
<hr style="width:0.5px;height:500px;margin-left:-500px;margin-right:500px;"/>
这会将它置于左侧,您可以将其反转以将其置于右侧。
答案 18 :(得分:1)
在您要应用垂直行的Previous元素中,您可以设置CSS ...
border-right-width: thin;
border-right-color: black;
border-right-style: solid;
答案 19 :(得分:0)
对于内联样式,我使用了这段代码:
<div style="border-left:1px black solid; position:absolute; left:50%; height:300px;" />
并将其直接定位在中心。
答案 20 :(得分:0)
旋转<hr>
90度:
<hr style="width:100px; transform:rotate(90deg);">
答案 21 :(得分:0)
我需要一条内联垂直线,所以我欺骗了一个按钮使其变成一条线。
<button type="button" class="v_line">l</button>
.v_line {
width: 0px;
padding: .5em .5px;
background-color: black;
margin: 0px; 4px;
}
答案 22 :(得分:0)
我认为这是一种简单的方法,您可以根据需要更改向左或向右边框
.vertical-line{
border-left:1px solid #000
}
<span class="vertical-line"></span
答案 23 :(得分:0)
您还可以使用呈现为“|”的 HTML symbol |
答案 24 :(得分:-1)
要使垂直线在中间位置居中使用:
position: absolute;
left: 50%;