<table>
<tr>
<td valign="top">文本</td>
</tr>
</table>
<table>
<tr>
<td style="vertical-align:top">文本</td>
</tr>
</table>
vertical-align和valign用于文本的对齐,比如vertical-align:top顶端对齐;vertical-align:bottom底端对齐;vertical-align:middle中部对齐或者说是居中;valign=“top”等也一样;
valign属于一种特性,现在很多新版本的浏览器都不支持这种特性了,所以你最好不要直接使用类似 valign="top"这种直插式的样式,严格按照标准写样式,比如 style="vertical-align:top"或者调用样式表
<td class="top1">文本</td>
.top1{vertical-align:top}
html页面代码量尽量精简,所有样式都调用样式表
在那个div里面插入一个<span class="xx">此处显示 class "xx" 的内容</span>在css里面设置它的值
·xx{ line-height: 100pxcolor: #FF0000}
差不多就这样吧
使用CSS将字体居中可以使用HTML中的 <center>标签,简单方便。
具体介绍CSS中Center标签定义、其使用方法及相关内容:
对浏览器支持:所有浏览器都支持 <center>标签。
定义和用法:对其所包括的文本进行水平居中。
标准属性:id, class, title, style, dir, lang, xml:lang。
事件属性:onclick, ondblclick, onmousedown, onmouseup, onmouseover,
onmousemove, onmouseout, onkeypress, onkeydown, onkeyup。
HTML 与 XHTML 之间的差异:
A、在 HTML 4.01 中,center 元素不被赞成使用。
B、在 XHTML 1.0 Strict DTD 中,center 元素不被支持。
Center标签实现字体居中案例:
<table width="400" border="0"><tr>
<td><center>表格内容1</center></td>
<td>表格内容2</td>
<td><center>表格内容3</center></td>
</tr>
<tr>
<td>表格内容4</td>
<td><center>表格内容5</center></td>
<td>表格内容6</td>
</tr>
<tr>
<td><center>表格内容7</center></td>
<td>表格内容8</td>
<td><center>表格内容9</center></td>
</tr>
</table>
Center标签实现字体居中案例效果:
附,另一种实现方法:
td{ text-align:center}
<td align="center" valign="middle">
前一个是水平居中 后一个是垂直居中
对应的css写法:
<td style="text-align:centervertical-align:middle">
提示和注释:请使 CSS 样式来居中文本!