如何 - 产品卡片
了解如何使用 CSS 创建产品卡片。
定制牛仔裤
$19.99
关于牛仔裤的一些文字。超薄且舒适的lorem ipsum lorem jeansum。Lorem jeamsun 牛仔布 lorem jeansum。
如何创建产品卡片
步骤 1) 添加 HTML
示例
<div class="card">
<img src="jeans3.jpg" alt="牛仔裤" style="width:100%">
<h1>定制牛仔裤</h1>
<p class="price">$19.99</p>
<p>关于牛仔裤的一些文字..</p>
<p><button>加入购物车</button></p>
</div>
步骤 2) 添加 CSS
示例
.card {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
max-width: 300px;
margin: auto;
text-align: center;
font-family: arial;
}
.price {
color: grey;
font-size: 22px;
}
.card button {
border: none;
outline: 0;
padding: 12px;
color: white;
background-color: #000;
text-align: center;
cursor: pointer;
width: 100%;
font-size: 18px;
}
.card button:hover {
opacity: 0.7;
}
亲自尝试 »