html中去掉表格边框线可以将boder属性设置成0px solid即可。如下图所示:
border 简写属性在一个声明设置所有的边框属性。
为边框指定宽度有两种方法:可以指定长度值,比如 2px 或 0.1em(单位为 px, pt, cm, em 等),或者使用 3 个关键字之一,它们分别是 thick 、medium(默认值) 和 thin。
注意:CSS 没有定义 3 个关键字的具体宽度,所以一个用户可能把 thick 、medium 和 thin 分别设置为等于 5px、3px 和 2px,而另一个用户则分别设置为 3px、2px 和 1px。
扩展资料
边框颜色设置方法介绍:
border-color属性用于设置边框的颜色。可以设置的颜色:
name - 指定颜色的名称,如 "red"
RGB - 指定 RGB 值, 如 "rgb(255,0,0)"
Hex - 指定16进制值, 如 "#ff0000"
还可以设置边框的颜色为"transparent"。
注意: border-color单独使用是不起作用的,必须得先使用border-style来设置边框样式。示例:
p.one{
border-style:solid border-color:red}
html去掉input边框的具体 *** 作步骤如下:
1、在html页面中输入input的相关代码。
<div class="form"><input id="code" class="ipx code" name="code" placeholder="请点击按钮领取礼包" type="text"><input type="button" class="send" value="发送"></div>。
2、打开浏览器,出现点击input出现了蓝色边框。
3、直接在input中加style=“outline:none”。
4、在顶部style中直接控制css样式:<style type="text/css">input{outline:none}</style>。
5、直接用 input:focus { outline: none} 控制聚焦即可去掉蓝色边框。
需要准备的材料分别有:电脑、浏览器、html编辑器。
1、首先,打开html编辑器,新建html文件,例如:index.html。
2、在index.html中的<body>标签中,输入html代码:<input type="text" style="outline: none" />。
3、浏览器运行index.html页面,此时输入框选中后出现的蓝色边框被去除了。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)