作者:大眼妹PS珺珺 | 来源:互联网 | 2022-10-18 10:23
我正在使用CSS稍微旋转文本。文本在白色背景上是黑色的,但是由于背景的旋转,所以有一些透明的小线穿过它。此图像将更清楚地显示它:
body {
background: red;
}
.featured-grid-b .item-heading {
/*Black text on white background*/
box-shadow: 0 0 0 5px #fff;
padding: 0;
background: #fff;
line-height: 2 !important;
display: inline;
color: #000;
text-shadow: none;
}
.caption h3 {
/*Rotate Text*/
transform: rotate(-3deg);
margin-bottom: 15px;
}
由于这是一个Wordpress网站,因此我无法真正调整HTML并尝试仅通过CSS更改来实现结果。因此,如果可能的话,我正在寻找可以解决该问题的CSS解决方案。文本应该看起来像这样,在每行文本之间留有空格。
1> Temani Afif..:
添加小插图盒阴影以避免出现此问题(似乎只能在Chrome上执行此工作)
.item-heading {
/*Black text on white background*/
box-shadow:
0 0 0 5px #fff,
0 0 0 2px #fff inset;
padding: 0;
background: #fff;
line-height: 2 !important;
display: inline;
color: #000;
text-shadow: none;
}
.caption h3 {
/*Rotate Text*/
transform: rotate(-3deg);
margin-bottom:15px;
}
body {
background:pink;
}