본문 바로가기
css

인쇄 스타일시트

by code-box 2021. 9. 22.
Jason from 37 Signals has a great post up on the Signal vs. Noise blog on how simple print stylesheets can be and still be effective. Basically using `display: none;` enmasse. People don’t need your header or your footer or your navigation. If they are trying to print your webpage they are trying to print the content, so give it to them.

여기 이론이 있다:

#header, #navigation, #footer, .any, .random, .junk, .on, .your, .page, .that, .shouldnt, .print {
    display: none; 
}

댓글