09_CSS型態選取器-HTML 元素 (element) 當作選取器 (selector) 就是型態選取器 (type selector)

09_CSS型態選取器-HTML 元素 (element) 當作選取器 (selector) 就是型態選取器 (type selector)

09_CSS型態選取器-HTML 元素 (element) 當作選取器 (selector) 就是型態選取器 (type selector)

 

css file

/*直接以任何 HTML 元素 (element) 當作選取器 (selector) 就��型態選取器 (type selector) */
body {
color: white;
background-color: navy;
}

 

html file

<html>
<head>
<title>網頁標題</title>
<linkrel="stylesheet"type="text/css"href="01.css">
</head>
<body>
<p>You ever have that feeling where you're not sure if  you're awake or still dreaming?</p>
<p>A prison for your mind.</p>
<p>Free your mind.</p>
<p>Believe the unbelievable.</p>
<p>There is no spoon.</p>
<p>I can only show you the door, you have to walk through it.</p>
<p>Choice. The problem is choice.</p>
<p>Then tomorrow we may all be dead, but how would that be different from any other day?</p>
<p>I have dreamed a dream, but now that dream has gone from me.</p>
<p>Choice is an illusion, created between those with power, and those without.</p>
<p>Because I choose to.</p>
<p>Everything that has a beginning has an end.</p>
</body>
</html>



 



 




發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *