在html的表格中,怎么把表格的边框设置为实线框?具体的代码是啥?谢谢

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在html的表格中,怎么把表格的边框设置为实线框?具体的代码是啥?谢谢相关的知识,希望对你有一定的参考价值。

<style type="text/css">
<!--
.tableborder
border-top-width: 1px;
border-right-width: 1px;
border-bottom-width: 1px;
border-left-width: 1px;
/*以上分别设置的是表格边框中上右下左的边框宽度*/
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
/*设置边框的表现样式,solid为实线*/
border-top-color: #0000FF;
border-right-color: #0000FF;
border-bottom-color: #0000FF;
border-left-color: #0000FF;
/*设置边框的颜色*/

-->
</style>
<table width="300" height="100" border="0" align="center" cellpadding="0" cellspacing="0" class="tableborder">
<tr>
<td>class="tableborder"是对样式的调用,写在table标签内</td>
<td> </td>
</tr>
</table>
参考技术A 写个样式:
.divTable
padding: 1px;
border-top-width: 0px;
border-right-width: 0px;
border-bottom-width: 1px;
border-left-width: 0px;
border-top-style: none;//上边
border-right-style: none;//右边
border-bottom-style: solid; //就是这个 它这个是把表格的t最下面一行设为实线
border-left-style: none;//左边
border-bottom-color: #ababab;
FONT-SIZE: 12px;
参考技术B table代码中有一个cellspacing方法,默认为2调成0就是实线了 参考技术C tableborder:1px solid #000; 参考技术D public static void main(agrs Stytem[])
    System.out.println("这是什么");

怎么把电子表格的边框变颜色啊

1、选中需要边框变色的单元格区域

2、按快捷键CTRL+1,弹出设置单元格格式对话框

3、单击边框选项卡,在颜色下拉列表框中选择颜色

4、单击外边框按钮,再单击内部按钮,然后点击确定即可改变边框颜色。

见下图:

参考技术A 选中要改变颜色的单元格,点击右键-设置单元格格式--边框--颜色本回答被提问者采纳 参考技术B 一直按着发光按钮 就可以 记得 采纳 参考技术C 为边框添色彩

以上是关于在html的表格中,怎么把表格的边框设置为实线框?具体的代码是啥?谢谢的主要内容,如果未能解决你的问题,请参考以下文章

html中怎么去掉表格边框线的?

word中制作的表格线条是灰色的,不能打印,怎么设置黑色的?

表格细边框的CSS样式啥设置?详细一点

html这个表格上下左右边框颜色怎么设置?

qframe不能设置边框

怎么把电子表格的边框变颜色啊