CSS3 게시판

시삽: 레드플러스 님 
게시판 이동:
 제목 : Selector: 위치 관련(Position)
글번호: 1
작성자: Administrator ( 레드플러스 / redplus@live.com )
작성일: 2013/02/01 오전 11:50:25
조회수: 2554
파일: 다운로드 (다운로드 권한이 없습니다.)
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title>선택기(Selector)</title>
    <style>
        /*ul li {
            background-color:yellow;
        }*/
        /*ul li:first-child, ul li:last-child {
            background-color:yellow;
        }*/
        /* CSS는 제로베이스가 아님, 1부터 인덱스 시작 */
        /*ul li:nth-child(3) {
            background-color:yellow;
        }*/
        /*ul li:nth-child(2n) {
            background-color:yellow;
        }
        ul li:nth-child(2n - 1) {
            background-color:silver;
        }*/
        ul li:nth-child(3n) {
            background-color:yellow;
        }
        ul li:nth-child(3n - 1) {
            background-color:orange;
        }
        ul li:nth-child(3n - 2) {
            background-color:silver;
        }
    </style>
</head>
<body>

    <ul>
        <li>데브렉</li>
        <li>닷넷코리아</li>
        <li>레드플러스</li>
        <li>라이선스랜드</li>
        <li>자바캠퍼스</li>
    </ul>

</body>
</html>
 
이전 글   다음 글 삭제 수정 답변 글쓰기 리스트


관련 아티클 리스트
  제       목 파일 작성자 작성일 조회
이전글 CSS3의 :root와 ::selection Selector 다운로드 권한이 없습니다. Administrator 2013-02-13 2532
현재글 Selector: 위치 관련(Position) 다운로드 권한이 없습니다. Administrator 2013-02-01 2554
다음글 (다음 글이 존재하지 않습니다.)
관련 페이지 리스트
titlenamedateview
Selector: 위치 관련(Position) Administrator 2013-02-01 2554
CSS3의 :root와 ::selection Selector Administrator 2013-02-13 2532
CSS3 다중 열 레이아웃(Multi Column Layouts) Administrator 2013-04-23 2612
!important로 스타일 적용에 대한  우선순위  높이기 Administrator 2015-08-06 2304
@media (min-width: 768px) - 미디어쿼리 사용시 min-width... Administrator 2015-08-07 2406
 
 
 
손님 사용자 Anonymous (손님)
로그인 Home