如何在DW中如何改变CSS中的字体大小和颜色?

html-css017

如何在DW中如何改变CSS中的字体大小和颜色?,第1张

font:粗细

大小/行高

字体

color:颜色

比如要控制td内的宋体加粗红色文字:

td{

font:bold

16px/100%

'宋体'

color:red

}

font:粗细

大小/行高

字体

color:颜色

比如要控制td内的宋体加粗红色文字:

td{

font-size:16px

line-height:100%

font-weight:bold

font-family:'宋体'

color:red

}

table {

font-size:14px

}

14数值随你改,越大越大。

HTML的

<div id="main">

<div id="xianshi">

<table>

<tr>

<td><form>

<input name="text" type="text" maxlength="20" />

</form>

</td>

</tr>

</table>

</div>

css的

table {

font-size:20px

}

CSS里把这个table改成input 就行了。