'WEB'에 해당되는 글 66건
- 2012.04.24 브라우저에 의한 폭과 높이의 차이
브라우저에 의한 폭과 높이의 차이
IE의 표준준거모드와 호환모드에서는 width속성과 height속성에 의해 설정되는 사이즈가 다릅니다.
CSS의 표준사양에 따라서 바르게 표시하는 표준준거모드에서는 요소의 내용영역의 사이즈로서 해석하여
표시되지만,
종래의 브라우저와 같은 표시를 하는 호환모드에서는 내용영역에 그 주변의 속성과 테두리선을 첨가한
사이즈로서 해석하여 표시됩니다.
간격이나 테두리선을 설정하는 방법에 따라서 표시에 큰 차이가 생기는 것이므로
width와 height에서 사이즈를 지정할 경우에는 주의해야 합니다.
또한, Netscape에서는 양쪽의 모드에서 내용영역의 사이즈로 해석하여 표시됩니다.
HTML 4.01 Strict
This DTD contains all HTML elements and attributes, but does NOT INCLUDE presentational or deprecated elements (like font). Framesets are not allowed.
HTML 4.01 Transitional
This DTD contains all HTML elements and attributes, INCLUDING presentational and deprecated elements (like font). Framesets are not allowed.
HTML 4.01 Frameset
This DTD is equal to HTML 4.01 Transitional, but allows the use of frameset content.
XHTML 1.0 Strict
This DTD contains all HTML elements and attributes, but does NOT INCLUDE presentational or deprecated elements (like font). Framesets are not allowed. The markup must also be written as well-formed XML.
XHTML 1.0 Transitional
This DTD contains all HTML elements and attributes, INCLUDING presentational and deprecated elements (like font). Framesets are not allowed. The markup must also be written as well-formed XML.
XHTML 1.0 Frameset
This DTD is equal to XHTML 1.0 Transitional, but allows the use of frameset content.
XHTML 1.1
This DTD is equal to XHTML 1.0 Strict, but allows you to add modules (for example to provide ruby support for East-Asian languages).