[css-基本類]css檔的載入外部檔
說明:
定義div的class是myClass
字大小 font-size
字型 font-style
字顏色color
italic 為斜體字型
30px 為30像素
href="依本html同錄目"
程式:
<html>
<head>
<title>[css-基本類]css檔的載入外部檔</title>
<meta http-equiv="Content-Type" content="text/html; charset=BIG5">
<link href="myCss.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="myClass">
[css-基本類]css檔的載入外部檔
</div>
</body>
</html>
myCss.css檔內容
.myClass{
font-size:30px;
font-style:italic;
color:#ffff00;
}
圖:
- 首頁
- JAVA 目錄
- JAVA WEB 目錄
- JAVA 其他未分類 目錄
- Grails目錄
- jQuery 目錄
- Apache 目錄
- JavaScript 目錄
- Spring + Hibernate 目錄
- Hibernate 目錄
- Linux 目錄
- 程式開發工具目錄
- MySQL 目錄
- PHP目錄
- C/C++ 目錄
- Google App Engine 目錄
- HTML5/CSS3
- 程式開發基本資訊
- Android
- Oracle 目錄
- Struts 目錄
留言列表