StyleSheet
Persisting Collapsible TOC State
Persisting Collapsible TOC State
2011.03.02ref. http://msdn.microsoft.com/en-us/library/ms533017(VS.85).aspx Behavior를 이용해 상태를 기억하고 history.back이 작동하였을 때 기억해둔 정보를 다시 로드하는 방식을 제공합니다. 아무래도 IE에서만 될 것 같은데... History 를 기억하도록 스타일에 behavior를 지정한 후 사용하면 되고 Code sample page를 제공하니 한번 눈으로 보면 좀 더 쉽게 이해될 것 같네요. code sample : http://samples.msdn.microsoft.com/workshop/samples/author/persistence/saveHistory_ht1.htm
How to set css style on disabled FORM INPUT Tag
How to set css style on disabled FORM INPUT Tag
2009.03.12잘 모르던 내용인데 Google Chrome 내에 있는 라이브러리를 보다가 알게 되었네요. textarea:disabled, input:not([type]):disabled, input[type="text"]:disabled, input[type="password"]:disabled, input[type="search"]:disabled { background-color: #EBEBE4; } 위와 같이 테그에 type 속성을 xpath 잡는 방식으로 잡네요. 그리고 그 뒤의 다른 속성 지정방식은 일반 CSS에서 하는 방식과 같으니 중요하진 않네요 ㅎㅎ 모르셨던 분들은 메모해두시길 ^ ^
IE와 W3C의 박스 차이에 의한 CSS 코딩 방식
IE와 W3C의 박스 차이에 의한 CSS 코딩 방식
2007.09.11http://www.456bereastreet.com/archive/200612/internet_explorer_and_the_css_box_model/ IE와 W3C에서 사용하는 BOX의 크기는 다르게 설정되어있어서 사이즈가 다르게 나오는 것들이 많이 있다. 이를 해결하기 위한 방안이 아래 설명되어 있다. 이하는 원문의 내용을 발췌한 내용.. The W3C Box model First a look at the the W3C box model, which is used by all standards compliant browsers and by Internet Explorer 6 and later if the circumstances are right. In the W3C CSS box model a b..