일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- 가상서버호스팅
- 램가스초월
- 소비전력
- proxmox
- ConoHa
- 알뜰폰
- php
- iptime
- 킹북이초월
- Rocky
- 윈도우10
- KB국민카드
- mysql
- 라즈베리파이2
- 시놀로지
- OpenWrt
- 스톤에이지
- SKT
- 자바스크립트
- 리눅스
- 복현오거리
- 티스토리
- 아파치
- 보르비스초월
- 알리익스프레스
- jQuery
- centos
- Apache
- KB증권
- PHP-FPM
- Today
- Total
맛집 여행 캠핑 일상 생활
HTML/CSS IE 7, 8 @media screen 안먹는 문제 본문
HTML/CSS IE 7, 8 @media screen 안먹는 문제
익스플로러 8버전 이하에서는 @media screen 이 먹히지가 않습니다.
https://github.com/heathcliff/css3-mediaqueries-js 여기에 가면 ie8 이하에서도 동작하도록 자바스크립트로 만들어진 파일을 다운로드 받을 수 있습니다.
https://github.com/heathcliff/css3-mediaqueries-js/blob/master/css3-mediaqueries.js
긁어서 css3-mediaqueries.js 파일로 저장을 하면 됩니다.
사용예제
<!doctype html>
<html>
<head>
<!--[if lt IE 9]>
<script src="/js/css3-mediaqueries.js"></script>
<![endif]-->
<style>
.div_test {
width:100%;
height:500px;
background:white;
}
@media screen and (max-width: 1280px) {
.div_test {
background:yellow;
}
}
@media screen and (max-width: 1024px) {
.div_test {
background:blue;
}
}
@media screen and (max-width: 640px) {
.div_test {
background:red;
}
}
@media screen and (max-width: 360px) {
.div_test {
background:green;
}
}
</style>
</head>
<body>
<div class="div_test"></div>
</body>
</html>
'HTML.CSS' 카테고리의 다른 글
CSS 여러개의 클래스 중에 몇번째 이후만 다르게 적용 (0) | 2017.02.01 |
---|---|
CSS IE 에서 스크롤바가 안나타나는 경우 (0) | 2017.01.17 |
HTML/CSS LI 태그 도트이미지가 크롬과 IE가 다르게 보이는 문제 (0) | 2016.11.03 |
HTML/CSS last-child 안먹는 경우 (0) | 2016.10.28 |
HTML/CSS DIV 모서리 라운드 처리 (0) | 2016.08.05 |