lecturer:琪雅
<p style="color: blue; font-family: Microsoft JhengHei;"> Blue Text </p>
<style>
p{
color: red;
font-weight: bolder;
}
</style>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
.headline {
text-align: center;
}
#headline {
text-align: center;
}
h1 {
text-align: center;
}
設定於HTML的標籤上,網頁上所有的標籤都會套用。
使用字元「*」,整張網頁下的所有元素都會套用設定。
* {
text-align: center;
}
用「,」逗點區隔,同時對多個選取器定義樣式。
h1, h2, p {
text-align: center;
}
背景
文字
box model 盒子模式
高度和寬度
display
border-radius
區塊陰影
p{
background-color: red;
background-color: #ff0000;
}
body{
background-image: url('網址');
}
p{
font-family: Microsoft JhengHei, serif;
font-size: 30px;
font-weight: bold;
text-align: center;
}
在盒子模式中,內容 (content) 是最內層的部分,接下來依序為留白 (padding)、邊框 (border)、以及邊界 (margin)。
div{
margin: 10px 20px 30px 40px;
padding: 0px 15px 0px 15px;
border: 1px solid green;
}
border: 寬度px 樣式 顏色;
div{
height:10px;
width:50px;
}
通常用來調整 DIV 區塊的高度、圖片的高度、表格的高度或者是文字輸入欄位的高度等
box model和高度和寬度的數值也可以直接用auto,讓瀏覽器自動判斷
#image {
height: auto;
margin: auto;
display: block;
}
設定網頁元素的顯示類型
#image{
width:100px;
height:50px;
background:#4d4d4d;
border-radius: 10px;
}
使div區塊添加圓角的效果
#image {
height: auto;
margin: auto;
display: block;
background:#4d4d4d;
border-radius: 10px;
box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
}
box-shadow:
在圖片上加入陰影效果