gpt4 book ai didi

带有水平线和垂直线的html页面设计

转载 作者:行者123 更新时间:2023-11-28 17:01:38 25 4
gpt4 key购买 nike

我试图获得以下输出。

enter image description here

但我的代码输出以不同的方式显示它(在整页中查看)。

<html>

<head>
<style>
h2 {
width: 100%;
text-align: center;
border-bottom: 1px solid #000;
line-height: 10em;
margin: 20px 0 40px;
}

h2 span {
background: #fff;
padding: 0 1px;
}

.vl {
border-left: 1px solid green;
height: 100%;
position: absolute;
left: 50%;
top: 0;
}
</style>
</head>

<body>
<h2>
<span>
<div class="vl"></div>
</span>
</h2>
</body>

</html>

它在两条水​​平线之间显示一条垂直线。

最佳答案

这是一个可以帮助您的简单代码。

body{
overflow:hidden;
}
.line1{
position:absolute;
width:50%;
height:30%;
border-right:2px solid black;
border-bottom:2px solid black;
}
.vertical{
position:absolute;
width:50%;
height:40%;
top:30%;
border-right:2px solid black;
}
.line2{
position:absolute;
width:50%;
height:30%;
border-top:2px solid black;
border-left:2px solid black;
bottom:0;
right:-10px;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<div class="container">
<span class="line1"></span>
<span class="vertical"></span>
<span class="line2"></span>
<div>
</body>
</html>

关于带有水平线和垂直线的html页面设计,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52659823/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com