Advertisement
itskrystalized

tab content 01# >> css

Jun 15th, 2015
288
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.10 KB | None | 0 0
  1. <style type="text/css">
  2. .container{ /* maga a táblázat */
  3.             width: 450px; /* szélesség */
  4.             margin: 0 auto;
  5.         }
  6.  
  7.         ul.tabs{
  8.             margin: 0px;
  9.             padding: 0px;
  10.             list-style: none;
  11.         }
  12.         ul.tabs li{ /* tabok kinézete */
  13.             background: none;
  14.             color: #0c0c0c;
  15.                         font-family: georgia;
  16.                         font-size: 8pt;
  17.                         font-style: italic;
  18.             display: inline-block;
  19.             padding: 5px 7px;
  20.             cursor: pointer;
  21.         }
  22.  
  23.         ul.tabs li.current{ /* jelenlegi tab */
  24.             background: #ebebeb;
  25.             color: #0c0c0c;
  26.                         font-family: georgia;
  27.                         font-size: 8pt;
  28.                         font-style: italic;
  29.                         border-top: 4px solid #0c0c0c;
  30.         }
  31.  
  32.         .tab-content{ /* tartalom */
  33.             display: none;
  34.             background: #ebebeb;
  35.                         font-family: trebuchet ms;
  36.                         font-size: 12px;
  37.                         line-height: 16px;
  38.             padding: 7px;
  39.                         border-bottom: 4px solid #0c0c0c;
  40.         }
  41.  
  42.         .tab-content.current{
  43.             display: inherit;
  44.         }</style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement