html learning -04 (css)

css external style sheet, the style sheet and the internal inline styles.

<html>
	<head>
		<style type="text/css">
			p {text-align: center;}
		</style>
		<link rel="stylesheet" type="text/css" href="../css/html-004.css">
	</head>
	<body>
		<h1>h1用了外链css,字体大小为30px,颜色为红色</h1>
		<br />
		<p>p标签用了内部样式表,字体居中</p>
		<p style="color: red;">该p标签需要为特殊样式,当不发生冲突时,保留样式表的属性</p>
		<p style="color: red; text-align: left;">该p标签需要为特殊样式,当发生冲突时,以当前标签属性为准。</p>
	</body>
</html>

css styles

h1 {
	font-size: 30px;
	color: red;
	}


Released seven original articles · won praise 0 · Views 216

Guess you like

Origin blog.csdn.net/qq_37961252/article/details/80140350