1. 程式人生 > >3 css嵌入式寫法

3 css嵌入式寫法

text utf title tle type 自己 itl clas color

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>css樣式介紹</title>
<style type="text/css">
span{
    color:red;
    font-size:24px;
    }
</style>
</head>
<body>
<p>
一個人失敗的最大<span>原因,</span>是對自己的能力缺乏充分的信心,甚至以為自己必將失敗無疑。
</p>
</body>
</html>  

3 css嵌入式寫法