gpt4 book ai didi

css - 如何在对 Angular 线元素上创建 CSS 边框

转载 作者:行者123 更新时间:2023-11-28 09:39:18 24 4
gpt4 key购买 nike

这是一个例子。 http://jsfiddle.net/52c7t/

简单地说:我试图让 div 位于右侧,并在左侧有一个类似于 div 的边框。 (我希望边框位于右侧 div 的左侧)

我尝试了一百万种不同的组合,但一直没能做到。我试图避免制作图像并使用 css 执行此操作。

感谢您的帮助!

更新:

我的意思的图像。抱歉我的平面设计技能:P

http://i.imgur.com/pGSnL.png

HTML

<div id = "top_bar">
<div id="top_left_button" >border</div>
<div class = "trapezoid"> none </div>
</div>​

CSS

.trapezoid{
vertical-align: middle;
position:absolute;
border-bottom: 60px solid blue;
border-left: 45px solid transparent;
border-top-left-radius:30px;
*border-top-right-radius:15px;
*border-bottom-right-radius:3px;
height: 0;
width: 50px;
display: inline-block;
right:1px;
}



#top_bar{
background-color: #000;
border-bottom: 1px solid #666;
color: #222;
position:fixed;
left:0px;
top: 0px;
width:100%;
overflow:hidden;
height: 50%;
font-weight: normal;
white-space: nowrap;
color: white;
z-index:20;
line-height: 45px;
min-width:320px;
max-width: 320px;
max-height:48px;
border-radius: 5px;
text-shadow: rgba(0,0,0,0.6) 0px -1px 0px;
}

#top_bar:after {
content: '';
width: 10%;
display: inline-block;
font-size: 0;
line-height: 0
}

#top_title, #top_left_button, #notifications, #top_right_button {
color: white;
height: 100%;
overflow:hidden;
display: inline-block;
text-align: center;
vertical-align: middle;
}
#top_left_button,#top_right_button{
width: 20%;
background: rgba( 100, 255, 255, .1 );
}


#top_left_button{
border-right: 2px solid #666;

}​

编辑:更新链接

最佳答案

简单的解决方案是创建另一个 div,因为您的蓝色 div 已经使用 border 属性组成。

新的 div 本质上是蓝色 div 的克隆,但会被涂成红色,并使用 CSS 宽度属性变得更大一些。这成为蓝色 div 的伪边框。

新div的例子:

.trapezoid-border{
vertical-align: middle;
position:absolute;
border-bottom: 60px solid red; /* Color Changed will be pseudo-border color */
border-left: 45px solid transparent;
border-top-left-radius:30px;
*border-top-right-radius:15px;
*border-bottom-right-radius:3px;
height: 0;
width: 53px; /* Extra 3 pix when compared to .trapezoid class width */
display: inline-block;
right:1px;
}

jsFiddle DEMO

关于css - 如何在对 Angular 线元素上创建 CSS 边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13782432/

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