精通 CSS+DIV 网页样式与布局 48

来源:互联网 发布:mac磁盘工具抹掉 失败 编辑:程序博客网 时间:2024/06/05 00:39

<td class=”bottom”>垂直对齐方式,bottom</td>
</tr>
<tr>
<td><img src=”02.jpg” border=”0”></td>
<td class=”middle”>垂直对齐方式,middle</td>
</tr>
</table>
</body>
</html>
<html>
<head>
<title> 首字放大 </title>
<style>
<!–
body{
background-color:black; /* 背景色 */
}
p{
font-size:15px; /* 文字大小 */
color:white; /* 文字颜色 */
}
p span{
font-size:60px; /* 首字大小 */
float:left; /* 首字下沉 */
padding-right:5px; /* 与右边的间隔 */
font-weight:bold; /* 粗体字 */
font-family:黑体; /* 黑体字 */
color:yellow; /* 字体颜色 */
}
/*
p:first-letter{
font-size:60px;
float:left;
padding-right:5px;
font-weight:bold;
font-family:黑体;
color:yellow;
}
p:first-line{
text-decoration:underline;
}*/
–>

0 0
原创粉丝点击