第15章 CSS文本样式[下]

index.html

<!DOCTYPE html>
<html lang="zh-cn">
<head>
	<meta charset="utf-8">
	<title>CSS文本样式[下]</title>
	<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>

<p>我是 html5,我是 HTML5,我是 html5sdlkfjsdlkfjsldkfjlksdjflksdjflksdjflksdjflksdjflksdfjlksdfjlk,我是 HTML5,我是 html5,我是 HTML5,我是 html5,我是 HTML5,我是 html5,我是 HTML5,我是 html5,我是 HTML5,</p>

<!-- <a href="http://baidu.com">百度</a> -->

</body>
</html>

style.css

@charset "utf-8";

p {
	font-size: 50px;
	background: silver;

	/*text-decoration: underline;*/
	/*text-decoration: overline;*/
	/*text-decoration: line-through;*/
	/*text-decoration: blink;*/

	/*text-transform: uppercase;*/
	/*text-transform: lowercase;*/
	/*text-transform: capitalize;*/

	/*text-shadow: 5px 5px 3px red;*/

	/*text-align: left;*/
	/*text-align: right;*/
	/*text-align: center;*/

	/*text-align: justify;*/
	/*text-align: start;*/
	/*text-align: end;*/

	/*white-space: nowrap;*/
	/*white-space: pre;*/
	/*white-space: pre-line;*/
	/*white-space: pre-wrap;*/

	/*letter-spacing: 5px;*/
	/*word-spacing: 15px;*/

	/*line-height: 1.5;*/

	word-wrap: break-word;
	text-indent: 50px;
}

/*a {
	text-decoration: none;
}*/

猜你喜欢

转载自onestopweb.iteye.com/blog/2231011
今日推荐