Bagaimana untuk membuat: butang 'Next' dan 'Previous'

Belajar bagaimana untuk menggunakan CSS untuk membuat butang 'Next' dan 'Previous'.

Butang 'Next' dan 'Previous'

Bagaimana untuk membuat butang 'Next' dan 'Previous'

Kesatria 1 - Tambahkan HTML:

<a href="#" class="previous">« Previous</a>
<a href="#" class="next">Next »</a>
<a href="#" class="previous round">‹</a>
<a href="#" class="next round">›</a>

Kesatria 2 - Tambahkan CSS:

a {
  text-decoration: none;
  display: inline-block;
  padding: 8px 16px;
{}
a:hover {
  background-color: #ddd;
  color: black;
{}
.previous {
  background-color: #f1f1f1;
  color: black;
{}
.next {
  background-color: #04AA6D;
  color: white;
{}
.round {
  border-radius: 50%;
{}

亲自试一试