TABLE 여러가지 방법으로 반응형 제작하기
페이지 정보
작성자 소프트존 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 댓글 0건 작성일 20-07-15 01:51본문
우선 TABLE 의 경우 반응형으로 제작할시 줄어들면서
보기 싫게 처리 되는 경우가 많습니다.
아래 주소에 나와 있는 display:block 를 사용하셔서 처리 하게 되면
깔끔하게 정렬되는 모습을 볼 수 있습니다.
상황에 맞게 처리 하시면 될듯 합니다.
미디어 쿼리를 이용하여 브라우저 크기를 감지하여 처리하는 css 입니다.
- @media only screen and (max-width: 800px) {
- /* Force table to not be like tables anymore */
- #no-more-tables table,
- #no-more-tables thead,
- #no-more-tables tbody,
- #no-more-tables th,
- #no-more-tables td,
- #no-more-tables tr {
- display: block;
- }
- /* Hide table headers (but not display: none;, for accessibility) */
- #no-more-tables thead tr {
- position: absolute;
- top: -9999px;
- left: -9999px;
- }
- #no-more-tables tr { border: 1px solid #ccc; }
- #no-more-tables td {
- /* Behave like a "row" */
- border: none;
- border-bottom: 1px solid #eee;
- position: relative;
- padding-left: 50%;
- white-space: normal;
- text-align:left;
- }
- #no-more-tables td:before {
- /* Now like a table header */
- position: absolute;
- /* Top/left values mimic padding */
- top: 6px;
- left: 6px;
- width: 45%;
- padding-right: 10px;
- white-space: nowrap;
- text-align:left;
- font-weight: bold;
- }
- /*
- Label the data
- */
- #no-more-tables td:before { content: attr(data-title); }
- }
- 이전글1.구글 웹폰트 사용법 내 블로그,홈페이지의 폰트를 쉽게 변경해보자 19.03.20
- 다음글Css Animation 애니메이션 3 - 커졌다 작아졌다 하는 애니메이션 19.07.15
댓글목록
등록된 댓글이 없습니다.