CSS_Style_Quiz.css 1.15 KB
/*

id -> #name (문서 내 유일)
class -> .name (동일 한 속성을 지닐 요소들을 정의)
tag -> name (특정 태그)

selector의 조합
p.box (p 태그 중에 class가 box인것)
p#summary (p 태그 중에 id가 summary 인것)

Grouping
h1, h2, h3  color : red;} (모두 지정함)

Nesting
p span : (p 태그 안에있는 span 태그 )
p > span : (p 태그 안에있는 sapn 태그 )

*/

html{
    background-color: white;
    color: black;
    padding: 20px 0;
	font: 14px/28px "맑은 고딕", "Malgun Gothic", "굴림", "Gulim", Verdan, Arial, Tahoma;
}

img.mainimage{
    width: 20%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

h1.title {
    font-size: 3em;
    text-align: center;
    width: 90%;
    border-radius: 10px;
    padding: 20px 30px;
    margin: 30px auto;
    background-color: lightblue;
    text-align: center;
    color: green;
}

h3{
    background-color:lightgoldenrodyellow;
    text-align: center;
    border-radius: 10px;
    width: 15%;
    margin: 20px;
}

ul.squre{
    list-style-type: square;
}

table {
    border-collapse: collapse;
    margin: 40px;
}

table, th, td {
    border: 1px solid black;
}