有没有办法纯粹通过css / html(或任何其他方法)在下面的图像中创建文本?基本上任何" i"将需要不同的颜色。
理想情况下,我希望通过Wordpress WYSIWYG输入(因为客户端可以输入他们想要的任何内容)作为H2。
我先尝试一下,但不知道从哪里开始!
答案 0 :(得分:0)
我做到了,但很难定位它!
.logo {
position: absolute;
top: 20px;
}
.white {
}
#blue {
top: 5px;
color: blue;
-moz-transform: scale(1, -1);
-webkit-transform: scale(1, -1);
-o-transform: scale(1, -1);
-ms-transform: scale(1, -1);
transform: scale(1, -1);
z-index: 3;
}
#black {
z-index: 1;
}
#white-blue {
width: 200px;
background: white;
position: absolute;
height: 20px;
top: 28px;
z-index: 2;
}
#white-black {
z-index: 4;
width: 200px;
background: white;
position: absolute;
height: 20px;
top: 24px;
}

<div id="white-blue"></div>
<h2 class="logo" id="blue">re-imagine</h2>
<div id="white-black"></div>
<h2 class="logo" id="black">re-imagine</h2>
&#13;