我用css给表格加边框怎么不起作用呢?
不好意思,我以前不怎么用css刚学了点,代码如下:<%@PageLanguage="C#"AutoEventWireup="true"CodeFile="register...
不好意思,我以前不怎么用css刚学了点,代码如下 :
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="register.aspx.cs" Inherits="register" %>
<!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 runat="server">
<title>无标题页 </title>
<style type="text/css">
#divInfo{ position:absolute;
width:728px;
height:115px;
z-index:1;
left: 17px;
top: 44px;}
#divInfo table{
margin:10px;
border-top-width: 4px;
border-right-width: 4px;
border-bottom-width: 4px;
border-left-width: 4px;
border-top-color: red;
border-right-color: red;
border-bottom-color: red;
border-left-color: red;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div id="divBody" >
表格之外
<div id="divInfo"> <table width="100%">
<tr>
<td width="14%" style="border:1px; border-color:#FF8000">gggggggggggggg </td>
<td width="86%"> </td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
</table>
</div>
</div>
</form>
</body>
</html> 展开
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="register.aspx.cs" Inherits="register" %>
<!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 runat="server">
<title>无标题页 </title>
<style type="text/css">
#divInfo{ position:absolute;
width:728px;
height:115px;
z-index:1;
left: 17px;
top: 44px;}
#divInfo table{
margin:10px;
border-top-width: 4px;
border-right-width: 4px;
border-bottom-width: 4px;
border-left-width: 4px;
border-top-color: red;
border-right-color: red;
border-bottom-color: red;
border-left-color: red;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div id="divBody" >
表格之外
<div id="divInfo"> <table width="100%">
<tr>
<td width="14%" style="border:1px; border-color:#FF8000">gggggggggggggg </td>
<td width="86%"> </td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
</table>
</div>
</div>
</form>
</body>
</html> 展开
2个回答
展开全部
你只设定了颜色和宽度,但你却没有设置边框样式
border-style: solid;
加上这个,或者其它你想要的边框样式
而且你那一堆可以简写
#divInfo table{
margin:10px;
border-top-width: 4px;
border-right-width: 4px;
border-bottom-width: 4px;
border-left-width: 4px;
border-top-color: red;
border-right-color: red;
border-bottom-color: red;
border-left-color: red;
}
写成
#divInfo table{
margin:10px;
border: solid 4px Red;
}
就可以了
border-style: solid;
加上这个,或者其它你想要的边框样式
而且你那一堆可以简写
#divInfo table{
margin:10px;
border-top-width: 4px;
border-right-width: 4px;
border-bottom-width: 4px;
border-left-width: 4px;
border-top-color: red;
border-right-color: red;
border-bottom-color: red;
border-left-color: red;
}
写成
#divInfo table{
margin:10px;
border: solid 4px Red;
}
就可以了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你写的太麻烦了
写成 border:solid 4px red;
这样就行了
写成 border:solid 4px red;
这样就行了
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询