In the left picture, the search categories can be scrolled (WEB, IMGES, ...).
The question is, how can you more easily implement this on your page?
|
1 answer
Try to use the overflow property. Description
#parent { width: 300px; height: 90px; text-align: center; overflow: visible; overflow-x: scroll; border: 1px solid red; } .ch { width: 440px; height: 40px; margin: 4px; background-color: #f4f4f4; } <div id="parent"> <div class="ch">Lorem ipsum dolor sit amet, est cu labores meliore.</div> </div> - Thank! It seems that I was looking for - Nikolay
|