Advertisement
Guest User

Limiter la hauteur des citations (CSS)

a guest
Apr 25th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.63 KB | None | 0 0
  1.     /** BEGIN Quote Collapse */
  2.     .fa-quote-collapsed {
  3.        display:block;
  4.        height:200px;
  5.        overflow:hidden;
  6.        position:relative;
  7.     }
  8.     a.fa-quote-expand {
  9.        display:none;
  10.        position:absolute;
  11.        z-index:1;
  12.        left:50%;
  13.        width:150px;
  14.        margin-left:-75px;
  15.        height:30px;
  16.        line-height:30px;
  17.        bottom:15px;
  18.        text-align:center;
  19.        text-decoration:none;
  20.        color:inherit;
  21.        background-color:#fff;
  22.        border:1px #999 solid;
  23.     }
  24.     .fa-quote-collapsed a.fa-quote-expand {
  25.        display: block;
  26.     }
  27.     /** END Quote Collapse */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement