伪类选择器 first-line first-letter
2016-09-27 本文已影响52人
Simon_s
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
html, body, div {
margin: 0;
padding: 0;
}
/*表示获取内容的第一行*/
#box:first-line {
color: aqua;
}
/*表示获取内容的第一个字*/
#box:first-letter{
font-size: 500px;
}
</style>
</head>
<body>
<div id="box">
mother fuck
mother fuck mother fuck mother fuck mother fuck mother fuck mother fuck mother fuck mother fuck mother fuck mother
fuck mother fuck mother fuck mother fuck mother fuck mother fuck mother fuck mother fuck mother fuck
</div>
</body>
</html>