sazid_iiuc

Tab UnderLine

Apr 18th, 2021 (edited)
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.37 KB | None | 0 0
  1. topnav {
  2.   overflow: hidden;
  3.   background-color: #f1f1f1;
  4. }
  5.  
  6. .topnav a {
  7.   float: left;
  8.   display: block;
  9.   color: black;
  10.   text-align: center;
  11.   padding: 14px 16px;
  12.   text-decoration: none;
  13.   font-size: 17px;
  14.   border-bottom: 3px solid transparent;
  15. }
  16.  
  17. .topnav a:hover {
  18.   border-bottom: 3px solid red;
  19. }
  20.  
  21. .topnav a.active {
  22.   border-bottom: 3px solid red;
  23. }
Add Comment
Please, Sign In to add comment