다음은 CSS로 다음 및 이전 버튼을 생성하는 코드입니다 -
예시
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1" /> <style> a { text-decoration: none; display: inline-block; padding: 20px; font-size: 35px; width: 40px; text-align: center; } .back:hover { background-color: #ddd; color: black; } .next:hover { background-color: rgb(121, 37, 133); color: white; } .back { border-radius: 50%; background-color: #acacac; color: black; } .next { border-radius: 50%; background-color: rgb(68, 30, 112); color: white; } </style> </head> <body> <h1>Previous and Next Button Example</h1> <a href="#" class="back">‹</a> <a href="#" class="next">›</a> </body> </html>
출력
위의 코드는 다음과 같은 출력을 생성합니다 -