gpt4 book ai didi

html - 一个 DIV 内的 CSS 三 Angular 形和框

转载 作者:行者123 更新时间:2023-11-28 04:37:10 24 4
gpt4 key购买 nike

有什么方法可以将用 CSS 创建的三 Angular 形和框合并到一个中吗 <div> .现在我得到了这个 HTML:

<div id="triangle-left"></div>
<div id="box"><!-- Something --></div>

在 CSS 中:

#triangle-left {
width: 0;
height: 0;
border-top: 30px solid transparent;
border-right: 30px solid #602F4F;
border-bottom: 30px solid transparent;
float:left;
}
#box {
background-color: #602F4F;
height: 50px;
width: 200px;
float:left;
text-align: right;
padding: 5px;
margin-bottom: 4px;
color: white;
font-family: "Century Gothic", "Apple Gothic", AppleGothic, "URW Gothic L", "Avant Garde", Futura, sans-serif;
}

这是结果 http://jsfiddle.net/9AyYS/ .

有什么方法可以将其简化为 <div> ?谢谢。

最佳答案

好的,在你的说服下,我把上面的评论移到了这里 =)

对 Mira 代码的轻微修改:

#box:before {
content:"";
position:absolute;
top:0;
right:210px;
width: 0;
height: 0;
border-top: 30px solid transparent;
border-right: 30px solid #602F4F;
border-bottom: 30px solid transparent;
}
#box {
background-color: #602F4F;
height: 50px;
width: 200px;
position:relative;
float:left;
text-align: right;
padding: 5px;
margin:0 0 4px 30px;
color: white;
font-family: "Century Gothic", "Apple Gothic", AppleGothic, "URW Gothic L", "Avant Garde", Futura, sans-serif;
}

DEMO

关于html - 一个 DIV 内的 CSS 三 Angular 形和框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16616846/

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