戻る

first-letter疑似クラス/first-line疑似クラス

CSS3

<!DOCTYPE html>
<html lang="ja-JP">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,user-scalable=yes,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.5">
<title></title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<style>
#first p:first-letter{
	color:#FF0000;
}
#second p:first-line{
	color:#0000FF;
}
</style>
<body>
<div id="first">
	<p>テキストテキストテキストテキストテキスト</p>
	<p>テキストテキストテキストテキストテキスト</p>
	<p>テキストテキストテキストテキストテキスト</p>
	<p>テキストテキストテキストテキストテキスト</p>
</div>
<div id="second">
	<p>
	テキストテキストテキストテキストテキスト<br>
	テキストテキストテキストテキストテキスト<br>
	テキストテキストテキストテキストテキスト<br>
	テキストテキストテキストテキストテキスト
	</p>
</div>
</body>
</html>

inserted by FC2 system