Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
395 views
in Technique[技术] by (71.8m points)

请问这种样式如何实现CSS

image.png


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

https://codepen.io/daocaorenJ...


.camera {
    font-size: 100px;
    position: relative;
    width: 0.6em;
    height: 0.4em;
    background-color: #39a9d6;
    border-radius: 0.2em 0.2em 0 0 / 0.3em 0.3em 0 0;
}

.camera::before {
    content: "";
    position: absolute;
    top: 0.3em;
    left: -0.5em;
    width: 1.6em;
    height: 1em;
    background-color: #39a9d6;
    border-radius: 0.2em;
}

.camera::after {
    content: "";
    position: absolute;
    top: 0.4em;
    left: -0.1em;
    width: 0.6em;
    height: 0.6em;
    border: 0.1em solid #fff;
    border-radius: 100%;
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...