Contents

1 tip
2 link
3 tool
4 css 관련 사이트


1 tip #

  • css for mobile
@media all and (max-width: 500px) {
  #foo { position: static; }
}
@media (max-width: 800px) {
  #foo { position: static; }
}
@media only screen and (max-device-width:480px){
body{ background-color:red;
}

  • media type 사용법
@import url("print.css") print;

@media (max-width: 800px) {
  #foo { position: static; }
}

@media print {
  font-size:12pt;
}
<link rel="stylesheet" type="text/css" media="screen" href="screen.css" />

  • CSS reset
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

/* remember to define focus styles! */
:focus {
	outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}


  • 자간 조정하기
letter-spacing:5pt

3 tool #

Web Developer - 웹사이트의 css를 실시간으로 수정해서 바로 확인 가능한 Web FireFox 플러그인


Valid XHTML 1.0! Valid CSS! powered by MoniWiki
last modified 2016-04-08 21:47:37
Processing time 0.0109 sec