我正在尝试为我的标题实现以下效果:http: //imgur.com/ozgAU
使背景为红色,然后将右侧图像附加圆形边缘和透明背景。
目前,红色背景填充了整个区域,因此右边的圆形图像没有透明背景,角落是红色的。
这是我目前拥有的 CSS:
.tabbed-heading{
background-color: #ef4857;
padding: 8px 0px 8px 10px;
background-image: url('images/headertabright.png');
background-position: right;
background-repeat: no-repeat;
color: #fff;
max-width: 60%;
}
-
<h4 class="tabbed-heading">Lineup</h4>
任何帮助将不胜感激,谢谢。