HTML中怎么能让字居中改变大小和颜色

如题所述

用div+css
代码如下
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style>
.box{
width:100px;/*容器宽度*/
height:100px;/*容器高度*/
border:1px #ccc solid;/*容器边框*/
text-align:center;/*文字居中*/
font-size::12px;/*文字大小*/
color:#000;/*文字颜色*/
}
</style>
</head>

<body>
<div class="box"></div>
</body>
</html>
温馨提示:内容为网友见解,仅供参考
第1个回答  2012-03-27
字体剧中需要添加属性align="center" 改变大小的标签有<big>,<small> 至于改变颜色我也不会。
相似回答