Notice
Recent Posts
Recent Comments
Link
- Arawn's Dev Blog
- Outsider's Dev Story
- Toby's Epril
- Benelog
- NHN 개발자 블로그
- SK 플래닛 기술 블로그
- OLC CENTER
- 소프트웨어 경영/공학 블로그
- 모바일 컨버전스
- KOSR - Korea Operating System …
- 넥스트리 블로그
- 리버스코어 ReverseCore
- SLiPP
- 개발자를 위하여... (Nextree 임병인 수석)
- "트위터 부트스트랩: 디자이너도 놀라워할 매끈하고 직관…
- Learning English - The English…
- real-english.com
- 'DataScience/Deep Learning' 카테…
- Deep Learning Summer School, M…
- Deep Learning Courses
민서네집
[css] initial 을 사용하지 말자. 본문
img {
width: 100%;
}
img.c-item-image {
width: initial;
width: auto;
}
.c-our-test-subpage #introduction .c-contents-sm-title:hover {
background-color: initial;
background-color: transparent;
}
.c-icon-image img {
width: initial;
width: auto;
}
CSS background-color Property
http://www.w3schools.com/cssref/pr_background-color.asp
CSS width Property
CSS initial Keyword
http://www.w3schools.com/cssref/css_initial.asp
위 웹페이지에서 보듯이 initial 키워드는 IE 에서는 Not Supported 이다.
따라서 css 에서 default 값을 이용하려는 경우
width 속성의 경우 initial 대신 auto 를 사용하고,
background-color 속성의 경우 initial 대신 transparent 를 사용하자.
min-width 속성의 경우 initial 대신 inherit 를 사용해야 한다. (IE에서도 적용되기 위해)
그런데 inherit 의 경우도 IE 8.0 부터 지원한다.
[참고] http://www.w3schools.com/cssref/css_inherit.asp
'WEB (HTML, CSS)' 카테고리의 다른 글
Google 폴리머 (0) | 2015.01.30 |
---|---|
Mouse Hover 시 이미지 교체하면서 Transition 효과 주기 (0) | 2015.01.13 |
How to get Browser History (0) | 2014.12.26 |
IE(Internet Explorer)의 호환성 문제 해결 (0) | 2014.12.12 |
jQuery Ajax IE8,9 Cross Domain Security Issue (0) | 2014.12.09 |
Comments