back button css

Solutions on MaxInterview for back button css by the best coders in the world

showing results for - "back button css"
Fatima
06 Nov 2018
1<!DOCTYPE html>
2<html>
3   <head>
4      <meta name="viewport" content="width=device-width, initial-scale=1">
5      <style>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;}</style>
6   </head>
7   <body><a href="#" class="previous">&laquo; Previous</a><a href="#" class="next">Next &raquo;</a> </body>
8</html>