CSS와 응답 가격 테이블을 생성하는 방법에 대해 알아보십시오.
- 기본
- $ 9.99 / 년
- 10기가바이트 저장
- 10 이메일
- 10 개 도메인
- 1기가바이트 대역폭
- 회원 가입
- 찬성
- $ 24.99 / 년
- 25기가바이트 저장
- 25 이메일
- 25 개 도메인
- 2기가바이트 대역폭
- 회원 가입
- 프리미엄
- $ 49.99 / 년
- 50기가바이트 저장
- 50 이메일
- 50 개 도메인
- 5기가바이트 대역폭
- 회원 가입
반응 형 가격 테이블을 만드는 방법
1 단계) HTML을 추가합니다 :
예
<div class="columns">
<ul class="price">
<li
class="header">Basic</li>
<li class="grey">$ 9.99 /
year</li>
<li>10GB Storage</li>
<li>10 Emails</li>
<li>10 Domains</li>
<li>1GB Bandwidth</li>
<li class="grey"><a href="#"
class="button">Sign Up</a></li>
</ul>
</div>
2 단계) CSS를 추가 :
예
* {
box-sizing: border-box;
}
/* Create
three columns of equal width */
.columns {
float: left;
width: 33.3%;
padding: 8px;
}
/* Style the list */
.price {
list-style-type: none;
border: 1px solid #eee;
margin: 0;
padding: 0;
-webkit-transition:
0.3s;
transition: 0.3s;
}
/* Add shadows on hover */
.price:hover {
box-shadow: 0 8px
12px 0 rgba(0,0,0,0.2)
}
/* Pricing header */
.price .header {
background-color: #111;
color: white;
font-size: 25px;
}
/* List
items */
.price li {
border-bottom: 1px solid #eee;
padding: 20px;
text-align: center;
}
/* Grey list item */
.price .grey {
background-color: #eee;
font-size: 20px;
}
/* The "Sign Up" button */
.button {
background-color: #4CAF50;
border: none;
color: white;
padding: 10px 25px;
text-align: center;
text-decoration: none;
font-size: 18px;
}
/* Change the width of the three columns to
100%
(to stack horizontally on small screens) */
@media only screen and (max-width: 600px) {
.columns {
width: 100%;
}
}
»그것을 자신을 시도