10_CSS全域選取器-全域選取器 (universal selector) 使用單一個星號

10_CSS全域選取器-全域選取器 (universal selector) 使用單一個星號

10_CSS全域選取器-全域選取器 (universal selector) 使用單一個星號

 

css file

/*全域選取器 (universal selector) 使用單一個��號 * ,規則 (rule) 套用在所有 HTML 元素 (element) 上*/
* {
padding: 5px;
border: 1px;
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>

 

 

 


發表迴響

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