본문 바로가기

CSS17

default css HTML, address, blockquote, body, dd, div, dl, dt, fieldset, form, frame, frameset, h1, h2, h3, h4, h5, h6, noframes, ol, p, ul, center, dir, hr, menu, pre { display: block } li { display: list-item } head { display: none } table { display: table } tr { display: table-row } thead { display: table-header-group } tbody { display: table-row-group } tfoot { display: table-footer-group } col { display.. 2017. 2. 1.
프린트 reset css body {font: 9pt/1.5 sans-serif;background: white; color: black;} /* 참고로 9pt/1.5 는 9pt 폰트사이즈에 line-height 줄간격을 1.5배로 하라는 것이 되겠습니다. */ .left {float:left;} .picL{float:left;} .right {float:right;} .border1 {border: 1px solid #000;}a {color: black; text-decoration:none;}h1 {font-size: 18pt;} h2 {font-size: 15pt;} h3 {font-size: 11pt;} p {text-indent: 15pt; orphans: 3;}#sidebar, #menu, #header_specia.. 2017. 2. 1.
테이블 마우스 오버색 바꾸기 style="line-height:150%; margin-top:0; margin-bottom:0;">                         style="line-height:150%; margin-top:0; margin-bottom:0;">                      style="line-height:150%; margin-top:0; margin-bottom:0;">                              style="line-height:150%; margin-top:0; margin-bottom:0;">         FF'" onmouseover="this.style.backgroundColor='#FFFFCC'">             style="line-hei.. 2017. 2. 1.
display block : 블록박스로 만든다. inline : 인라인 박스로 만든다. inline-block : 블록박스로 만들어지지만, 인라인 박스처럼 배치된다. (CSS2.1 권고후보에 추가) none : 박스를 만들지 않으며 시각적으로 완전히 보이지 않는다. inherit : 상위 요소의 display속성을 상속받는다. table : 블록레벨의 표로 만든다. (table) inline-table : 인라인레벨의 표로 만든다. (table) table-row : 행으로 만든다 (tr 기본 속성) table-row-group : 본체 행 그룹으로 만든다. (tbody 기본 속성) table-header-group : 헤더 행 그룹으로 만든다. (thead 기본 속성) table-footer-group : 푸터 행 .. 2017. 1. 25.