答案 0 :(得分:0)
又快又脏:
h1 {
position: relative;
height: 2em;
overflow: hidden;
}
h1:before {
display: block;
background-color: aqua;
content: "";
height: 1em;
width: 100%;
position: absolute;
top: .5em;
left: 5%;
z-index: -1;
transform: skewX(-15deg);
}

<h1>
Your Title Goes Here
</h1>
&#13;
答案 1 :(得分:0)
HTML:
<div id="title">
Your title goes here
</div>
CSS:
#title {
position: absolute;
top: 50px;
left: 50px;
font-size: 40px;
font-family: Arial;
}
#title:after {
position: absolute;
top: 5px;
left: 36px;
content: "";
width: 100%;
height: 100%;
background: cyan;
z-index: -1;
transform: skewX(-10deg);
}