对于我正在制作的网站,我必须创建以下块。
我有以下 CSS,当与下面的 HTML 一起使用时,它会创建一个带有圆边和阴影的白框。
<style type="text/css">
.stripeblock {
width: 310px;
border-radius: 12px;
background-color: #fff;
padding: 10px;
box-shadow: 0 8px 6px -6px black;
}
</style>
<div class="stripeblock">
<h1>Just some title</h1>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to...</p>
</div>
唯一缺少的是绿色水平条纹,我尝试了几件事,但无法正确插入。
我希望它通过 CSS 包含在内,而不是 div 中的单独元素。
这可能吗?