Internal CSS là gì?
Noun
Css
- ★
- ★
- ★
- ★
- ★
embedded css
Trong internal CSS, các rule set của CSS phải nằm trong file HTML trong thẻ (tag) head, tức là CSS được nhúng trong file HTML. Ví dụ:
<head>
<title>Internal CSS</title>
<style>
.main {
text-align:center;
}
.GFG {
color:#009900;
font-size:50px;
font-weight:bold;
}
.geeks {
font-style:bold;
font-size:20px;
}
</style>
</head>
Learning English Everyday