gpt4 book ai didi

css - 使用 CSS 创建形状

转载 作者:行者123 更新时间:2023-12-02 05:19:08 26 4
gpt4 key购买 nike

在我的 website我想做一个对话泡泡,并找到了一个很棒的教程。但我想做一些改变,但我不知道该怎么做。基本上我想水平翻转小三 Angular 形,所以它的垂直方向在右侧而不是左侧。这是 CSS:

.bubble
{
margin-top: 100px;
position: relative;
width: 200px;
height: 100px;
text-align: center;
line-height: 100px;
background-color: #fff;
border: 8px solid #666;
-webkit-border-radius: 30px;
-moz-border-radius: 30px;
border-radius: 30px;
-webkit-box-shadow: 2px 2px 4px #888;
-moz-box-shadow: 2px 2px 4px #888;
box-shadow: 2px 2px 4px #888;
}


.bubble:after
{
content: ' ';
position: absolute;
width: 0;
height: 0;
left: 38px;
top: 100px;
border: 15px solid;
border-color: #fff transparent transparent #fff;
}

最佳答案

试试下面的 CSS:

.bubble:after {
-moz-border-bottom-colors: none;
-moz-border-image: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
border-color: orange orange transparent transparent; // See here i change the color
border-style: solid;
border-width: 15px;
content: " ";
height: 0;
position: absolute;
right: 38px; // see here for position
top: 100px;
width: 0;
}

.bubble:before {
border: 25px solid;
content: " ";
height: 0;
position: absolute;
right: 30px; // see here for position
top: 100px;
width: 0;
}

关于css - 使用 CSS 创建形状,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14168564/

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