본문 바로가기

Web Frontend

[CSS] reset.css (iOS 스타일 초기화)

728x90

각 브라우저마다 기본 CSS가 다르게 설정되어 있습니다. 우리가 원하는 디자인을 모든 브라우저에서 동일하게 보고 싶다면 각 브라우저의 기본 CSS를 모두 초기화시켜야 되겠죠? 그럴 때 사용하는 것이 reset.css 입니다.
CSS Tools: Reset CSS (meyerweb.com)

 

CSS Tools: Reset CSS

CSS Tools: Reset CSS The goal of a reset stylesheet is to reduce browser inconsistencies in things like default line heights, margins and font sizes of headings, and so on. The general reasoning behind this was discussed in a May 2007 post, if you're inter

meyerweb.com

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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, 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,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

근데 ios에서 input, textarea button 같은 경우 따로 초기화를 해줘야 합니다. 아래 코드들을 reset.css에 추가해주시면 됩니다.

input, textarea, button {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
}

 

reset.css는 반드시 다른 style을 적용하기 전에 먼저 사용해주셔야 합니다. 즉 <style> 태그로 reset.css가 들어갈 때 다른 <style> 태그보다 선행되어야 합니다. 

728x90

'Web Frontend' 카테고리의 다른 글

iOS 한글 버퍼 오류  (1) 2023.12.07