dreamweaver中文字设置问题?

来源:百度知道 编辑:UC知道 时间:2024/06/28 04:00:47
1、文字设置垂直居中。为什么总是贴着上面。我看论坛里面的字都是居中的。怎么才能对齐?
2、设置超连接的文字都有个下划线。怎样才能不显示下划线?

1.你没写出代码,不知道你是设错了还是什么,鼠标点在那个单元格里,就可以在属性里设置居中了

2.参考下面的代码,自己试一下,可以设置下划线的

a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a:active {
text-decoration: none;
}