作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
.example-number:after {
border-color: transparent #FFFFFF;
border-style: solid;
border-width: 0 0 140px 55px;
bottom: -140px;
content: "";
position: absolute;
right: 85px;
}
这是 http://nicolasgallagher.com/pure-css-speech-bubbles/demo/ 中说“57”的红色语音气泡中钝 Angular 三 Angular 形的代码.我看到 border-width 被用来控制三 Angular 形,但为什么三 Angular 形是钝 Angular 而不是直 Angular ?
最佳答案
我相信您需要 before
和 after
选择器:
/* creates the larger triangle */
.example-number:before {
content:"";
position:absolute;
bottom:-140px;
right:0;
border-width:0 0 140px 140px;
border-style:solid;
border-color:transparent #C91F2C;
}
/* creates the larger triangle */
.example-number:after {
content:"";
position:absolute;
bottom:-140px;
right:85px;
border-width:0 0 140px 55px;
border-style:solid;
border-color:transparent #fff;
}
红色是用:before
创建的,部分是用:after
删除的。
关于css - 这个 CSS 的哪一部分使这个三 Angular 形变钝了?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6381111/
我是一名优秀的程序员,十分优秀!