라벨이 html인 게시물 표시

[HTML] input file

1. input file <style type="text/css"> .eventWrap .inputFile{padding:23px 0 14px 227px;} .eventWrap .inputFile:after{content:'';display:block;clear:both;} .eventWrap .inputFile .file_input_textbox{float: left;width:405px;height:55px;line-height:55px;border:1px solid #ababab;border-width:1px 0 1px 1px;background:#f1f1f1;font-size:16px;} .eventWrap .inputFile .file_input_div{position: relative;   width: 140px;   height: 57px;   overflow: hidden;text-align:left;} .eventWrap .inputFile .file_input_button{width: 140px;height:57px;  position: absolute;  top: 0px; background:url('./images/btn_file_search.gif') no-repeat 0 0; color:#fff;text-indent:-9999px;border:none;} .eventWrap .inputFile .file_input_div .file_input_hidden{width:546px;height:57px;  font-size: 23px;   position: absolute;   right: 0px;   top: 0px;   opacity: 0;filter: alpha(opacity=0);  -ms-filter: "alpha(opacity=0)";  -khtml-opacity: 0;  -moz-opacit...

[HTML] ie7 first-child 주석 버그

<style type="text/css"> div ul.listNum li: first-child {color:red;font-weight:bold;} </style> <div> <ul class="listNum"> <!-- 주석 --> <li>1</li> <li>2</li> <li>3</li> <li>4</li> <li>5</li> </ul> </div> 위 코드 작성시 별다른 문제가 없이 첫번째 li의 폰트에 css가 적용이 될것 이다. 다만 ie7에서 주석으로 인해서 first-child가 적용이 안될 경우가 생긴다. 신기했음...

[HTML] Object 동영상 삽입 코드

<object ID="mediaPlayer" classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" standby="개체를 읽어 들이는 동안 출력될 문장" type="application/x-oleobject" width="320px" height="280px"> <param name="fileName" value='mms://wm-001.cafe24.com/doax/Daye3.wmv'> <param name="autoStart" value="true"> <param name="showControls" value="true"> <param name="loop" value="1"> </object> Object 태그 속성 - id :  개체를 구분하기위한 ID. 임의의 문자열. - classid : 윈도우 레지스트리나 URL에서 설정된 Class ID 값 - codebase : 개체에 필요한 코드를 찾을 수 있는 위치(일반적으로 URL)  - standby : 개체를 읽어 들이는 동안 출력될 문장 - type : 데이타의 MIME 유형 - width : 개체의 너비 - height : 개체의 높피 Param 태그 속성 - fileName : 플레이할 동영상의 URL - autoStart : 동영상의 자동 시작 여부를 설정(TRUE, FALSE) - showControls : 재생, ...