CSS怎么制作边框线
<divalign="center"><tableid="__01"width="800"height="1487"border="0"cellpadd...
<div align="center"><table id="__01" width="800" height="1487" border="0" cellpadding="0" cellspacing="0">.xiao { height: 0px; width: 800px; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: solid; border-bottom-style: none; border-left-style: solid; border-top-color: #000000; border-right-color: #000000; border-bottom-color: #000000; border-left-color: #000000;}上面这段是我在Dreamweaver弄的.不懂对不对.我是新手.不会怎么制作边框线.要怎么样才能使它在html中实现效果呢?
展开
3个回答
展开全部
做边框有两种:一种是自己做的、在用他来做背景.<div style="background:url()repeat-x(y) left bottom"不过这个要麻烦点不过有时候为了网页的美观这也是必要的。还有一种就是直接用border他可以简化,比如你四个边只有上面不要边时你可以这样写 border:1px solid #ccc; border-top:none;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<!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>
.xiao { height:100px; width:800px; border:1px solid #000; border-top-style: none; border-bottom-style: none;}
</style>
</head>
<body>
<div align="center" class="xiao"></div>
</body>
</html>
你不要把height高度设置为0 ,这样看不到效果的~~
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style>
.xiao { height:100px; width:800px; border:1px solid #000; border-top-style: none; border-bottom-style: none;}
</style>
</head>
<body>
<div align="center" class="xiao"></div>
</body>
</html>
你不要把height高度设置为0 ,这样看不到效果的~~
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询