gpt4 book ai didi

html - 如何将一条线作为伪元素?

转载 作者:行者123 更新时间:2023-11-28 01:19:03 26 4
gpt4 key购买 nike

所以,我坚持这个。在下图中,您可以看到我应该做什么。但是,我真的不明白如何在 div 之间制作这些交叉线。

picture

这是我到目前为止完成的代码: https://codepen.io/kaeses_developer/pen/wxyYdb

我想我必须为 .menu-item--large 创建一个 :before 和一个 :after 伪元素。

.menu-item--large {
flex-basis: 100%;
font-size: 36px;
background: none;
margin: 0 50%;
}

但是我该怎么做才对呢?或者有什么不同的制作方法吗?

最佳答案

给你,我按照你的意愿使用了伪元素,并想出了这个 codepen ,先检查一下,这是下面的代码。

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
margin: 0;
height: 100%;
background-image: url(https://i.pinimg.com/originals/a4/6c/6d/a46c6d2f5104ea715af56e5c60d57eac.jpg);
}

.menu-container{
display: flex;
justify-content: center;
flex-wrap: wrap;
margin: 0 25%;
}

.menu-item {
background-color: rgba(0,0,0,.2);
flex: 1 1 25%;
font-size: 250px;
text-align: center;
margin: 10px;
color: #fff;
}

.menu-item--large {
flex-basis: 100%;
font-size: 36px;
background: none;
margin: 0 50%;
}

.menu-item:hover > i {
opacity: .4;
color: #000;
}

@media only screen and (min-width: 720px) {
.menu-item.menu-item--with-v-divider {
position: relative;
margin-right: 50px;
}

.menu-item.menu-item--with-v-divider:after {
content: '';
display: inline-block;
position: absolute;
right: -30px;
height: 100%;
width: 1px;
background-color: #e5e5e5e5;
}

.menu-item.menu-item--with-h-dividers {
position: relative;
margin: 20px 0;
}

.menu-item.menu-item--with-h-dividers:after,
.menu-item.menu-item--with-h-dividers:before {
content: '';
position: absolute;
width: 325px;
height: 1px;
top: 20px;
background-color: #e5e5e5;
}


.menu-item.menu-item--with-h-dividers:after {
right: 15px;
}
.menu-item.menu-item--with-h-dividers:before {
left: 15px;
}
}
<!DOCTYPE html>
<html>
<head>
<title>menu 2</title>
<link rel="stylesheet" href="menu-2.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="menu-container">
<div class="menu-item menu-item--with-v-divider">
<i class="far fa-list-alt"></i>
</div>
<div class="menu-item">
<i class="fas fa-user"></i>
</div>
<div class="menu-item menu-item--large menu-item--with-h-dividers">
<i class="fas fa-sign-in-alt"></i>
</div>
<div class="menu-item menu-item--with-v-divider">
<i class="fas fa-plus"></i>
</div>
<div class="menu-item">
<i class="fas fa-pencil-alt"></i>
</div>
</div>
</body>
</html>

关于html - 如何将一条线作为伪元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51622064/

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