我正在尝试仅使用 css 重现此图像
我玩过半径属性,但你会看到我没有得到相同的角度效果。
.shape{
background-color: black;
opacity:0.9;
filter:alpha(opacity=90); /* For IE8 and earlier */
color:white;
font-weight:bold;
padding: 30px 30px 30px 50px;
text-align:center;
position:absolute;
right:0;
bottom:0;
z-index:1003;
font-size: 20px;
border-top-left-radius: 125px;
-moz-border-radius-topright: 125px;
}
您可以在http://jsfiddle.net/ymorin007/7qX4U/看到我尝试过的内容
谢谢。