[10]CSS overflow


[10]CSS overflow

HTML [10]CSS overflow MrBini 2016. 4. 4. 16:36 이웃추가 본문 기타 기능 [01] CSS overflow property - overflow, overflow-x, overflow-y - contents 가 Box 영역을 벗어났을때 처리되는 방법을 나타냄. >>>> overflow1.html <!DOCTYPE html> <html> <head> <style> div.scroll { background-color: #00FFFF; width: 100px; height: 100px; overflow: scroll; } div.hidden { background-color: #00FF00; width: 100px; height: 100px; overflow: hidden; } </style> </head> <body> <p>The overflow property specifies what to do if the content of an element e...



원문링크 : [10]CSS overflow