[09]CSS Display and Visibility


[09]CSS Display and Visibility

HTML [09]CSS Display and Visibility MrBini 2016. 4. 4. 16:17 이웃추가 본문 기타 기능 1.Hiding an Element - display:none or visibility:hidden <!DOCTYPE html> <html> <head> <style> h1.hidden { visibility: hidden; visibility: hidden; 은 보이않지만 공간은 남아 있음 } </style> </head> <body> <h1>This is a visible heading</h1> <h1 class="hidden">This is a hidden heading</h1> <p>Notice that the hidden heading still takes up space.</p> </body> </html> ---------------------------------------------------------------------------...



원문링크 : [09]CSS Display and Visibility