国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

element selector

1. The most common selector is the element selector, and the elements of the document are the most basic selectors.

Like these: h1{}. a{}, etc.

css file can be implemented like this:

h1{  color: cadetblue;  
}

There are many such examples, so I won’t give them one by one here. It’s very simple. This is called an element selector. Let’s talk about the selector below. Group.


Continuing Learning
||
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>認(rèn)識(shí)html標(biāo)簽</title> <style type="text/css"> h1{ font-weight:normal; color:red; } </style> </head> <body> <h1>勇氣</h1> <p>三年級(jí)時(shí),我還是一個(gè)膽小如鼠的小女孩,上課從來不敢回答老師提出的問題,生怕回答錯(cuò)了老師會(huì)批評(píng)我。就一直沒有這個(gè)勇氣來回答老師提出的問題。學(xué)校舉辦的活動(dòng)我也沒勇氣參加。</p> <p>到了三年級(jí)下學(xué)期時(shí),我們班上了一節(jié)公開課,老師提出了一個(gè)很簡(jiǎn)單的問題,班里很多同學(xué)都舉手了,甚至成績(jī)比我差很多的,也舉手了,還說著:"我來,我來。"我環(huán)顧了四周,就我沒有舉手。</p> </body> </html>
submitReset Code