gpt4 book ai didi

css - div 中的背景

转载 作者:行者123 更新时间:2023-12-02 08:30:59 24 4
gpt4 key购买 nike

我通过塑造一个 div 为我的网站标题制作了一个倒三 Angular 形。这是 CSS。

.triangle{
width: 0;
height: 0;
border-style: solid;
border-width: 100px 49vw 0 49vw;
margin-top:-8px;
border-color: gray transparent transparent transparent;
width:0;
height:0;

我想插入一张符合三 Angular 形的图片,而不是灰色作为背景色。有人有什么想法吗?

谢谢亚力克

最佳答案

演示 - http://jsfiddle.net/euppwbub/

您可以使用元素:after并使用border隐藏外部额外内容

但你需要为 .triangle 提供 heightbackground-image

.triangle {
background: url(http://dummy-images.com/abstract/dummy-480x270-Rope.jpg);
width: 100%;
height: 100px;
position: relative;
}
.triangle:after {
content: '';
border-style: solid;
border-width: 100px 50vw 0vh 50vw;
border-color: transparent white;
top: 0;
right: 0;
left: 0;
position: absolute;
}
<div class="triangle"></div>

关于css - div 中的背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26814517/

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