728x90
노드 수에 맞게 이미지 가로 너비를 조절한다.
HTML
<ul>
<li><img src="/images/re/sample/po1.png" /></li>
<li><img src="/images/re/sample/po2.png" /></li>
<li><img src="/images/re/sample/po3.png" /></li>
<li><img src="/images/re/sample/po4.png" /></li>
</ul>
CSS
.photo_box{display: inline-block;}
.photo_box ul li {overflow: hidden; float: left; height: 160px; margin-right: 1%;}
.photo_box ul li:only-child {width: 100%; margin-right: 0%;}
.photo_box ul li:nth-last-child(2), .photo_box ul li:nth-last-child(2)+li {width: 49%;}
.photo_box ul li:nth-last-child(3), .photo_box ul li:nth-last-child(3)~li {width: 32%;}
.photo_box ul li:nth-last-child(4), .photo_box ul li:nth-last-child(4)~li {width: 24%;}
.photo_box ul li:last-child{margin-right: 0%;}
.photo_box ul li img {width: 200%; margin-left: -40%;}
728x90
'STUDY > programing' 카테고리의 다른 글
[jquery] input value에 따라 label 숨기기, 보이기 (0) | 2020.11.26 |
---|---|
python 설치 및 개발환경 설정(atom 에디터 사용) (0) | 2020.03.17 |
이미지 클릭시 새창 팝업 띄우기 (0) | 2019.09.15 |
PHP 이름 *표 마스킹하기 (익명처리) (0) | 2019.05.17 |
CSS로 모바일 버튼 눌림 표시/클릭 액션 스타일 (active 선택자 이용) (0) | 2019.05.09 |
자바스크립트, 제이쿼리에서 사용하는 타이머 함수 setTimeout(), setInterval(), clearTimeout(), clearInterval() (0) | 2019.04.24 |