flexbox-single-line-clamp-3-ref.html (579B)
1 <!doctype html> 2 <!-- 3 Any copyright is dedicated to the Public Domain. 4 http://creativecommons.org/publicdomain/zero/1.0/ 5 --> 6 <meta charset="utf-8"> 7 <title>CSS Test Reference</title> 8 <link rel="author" title="Emilio Cobos Álvarez" href="mailto:ecoal95@gmail.com"> 9 <style> 10 .container { 11 background: gray; 12 height: 80px; 13 } 14 .panel { 15 background: lightblue; 16 width: 150px; 17 height: 80px; 18 } 19 .contents { 20 height: 10px; 21 width: 10px; 22 background: purple; 23 } 24 </style> 25 </head> 26 <div class="container"> 27 <div class="panel"> 28 <div class="contents"></div> 29 </div> 30 </div>