<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style>
.box{
width:500px
height:300px
border:1px solid #ccc
padding:10px
box-sizing:border-box
}
.write{
margin-top:50px
}
textarea{
width:500px
height:94px
box-sizing:border-box
}
</style>
<script type="text/javascript" src="js/jquery-2.1.0.js" ></script>
</head>
<body>
<div>
<h2>评论区</h2>
<div class="box">
<!--<p>我是评论内容1</p>-->
</div>
</div>
<div class="write">
<textarea id="textblock"></textarea>
<button class="submit">提交内容</button>
</div>
<script>
$(function(){
var arr = []
function writecon(){
var str = ''
for(var i=0 i<arr.length i++){
str += "<p>" + arr[i] + "</p>"
}
$(".box").append(str)
}
writecon()
$(".submit").click(function(){
var textblock = $("#textblock").val()
if(textblock){
arr.push(textblock)
var str = "<p>" + textblock + "</p>"
$(".box").append(str)
$("#textblock").val("")
console.log(arr)
}else{
alert("请输入内容")
}
})
})
</script>
</body>
</html>
border属性 :在网页中设置元素的边框样式。可同时设置边框宽度、边框样式、边框颜色。也可以单独设置上边、右边、下边、左边的边框。
语法:border: border-width | border-style | border-color
border-width :边框宽度。可以指定长度值。如1px,1em(单位为px,pt,em等)。或者使用关键字medium(默认),thick,thin。
border-top-width:设置元素上边框宽度
border-right-width:设置元素右边框宽度
border-bottom-width:设置元素下边框宽度
border-left-width:设置元素左边框宽度
border-style :边框样式。
border-top-style:设置元素上边框样式
border-right-style:设置元素右边框样式
border-bottom-style:设置元素下边框样式
border-left-style:设置元素左边框样式
属性值有:
none:无边框。
hidden:隐藏边框。对于表,hidden 用于解决边框冲突。
dotted:点状边框。
dashed:虚线边框。
solid:实线边框。
double:双线边框。两条单线与其间隔的和等于指定的border-width值。
groove:3D凹槽边框。
ridge:3D垄状边框。
inset:凹边框。
outset:凸边框。
border-color :边框颜色。
1.1 边框各样式效果图
1.2 四条边颜色样式相同
1.3 四条边颜色不同,样式相同
1.4 四条边颜色相同,样式不同
1.5 设置上边框宽度、样式、颜色
1.6 设置右边框宽度、样式、颜色
1.7 设置下边框宽度、样式、颜色
1.8 设置左边框宽度、样式、颜色
以上对border边框属性进行了基础操作,大家可以根据自己的经验为边框制作出更漂亮的样式。如若大家有什么更好的见解,那就在回复区畅所欲言吧,我定会吸取精华~如有写错欢迎大家回复,我以后定会更加细心 _
打开APP小胖纸liuhui
关注
css去掉文字链接颜色,点击链接后恢复链接文字的颜色_html/css_WEB-ITnose 转载
2021-08-04 06:08:08
1点赞
小胖纸liuhui
码龄5年
关注
访问页面,链接初始颜色为“黑色”,当鼠标悬停在链接上时,颜色改变,当点击链接后颜色又恢复成黑色???
css样式:
a:link {color: #666666text-decoration: none}
a:visited {text-decoration: nonecolor: #666666}
a:hover {text-decoration: underlinecolor: #000000}
a:active {text-decoration: nonecolor: #666666}
页面中的链接:
车险首页
网上投保
理赔中心
客户服务
我的车险
回复讨论(解决方案)
a:link {color: #666666text-decoration: none}
a:hover {text-decoration: underlinecolor: #000000}
定义这两个伪类即可达到目的。
以下两个可以忽略
a:visited {text-decoration: nonecolor: #666666}
a:active {text-decoration: nonecolor: #666666}
如果不去掉下边的两个样式,还有别的方法吗?(这些css样式是放在一个单独公用的css文件中的,不能轻易修改)
a:visited {text-decoration: nonecolor: #666666}
a:active {text-decoration: nonecolor: #666666}
如果不去掉下边的两个样式,还有别的方法吗?(这些css样式是放在一个单独公用的css文件中的,不能轻易修改)
a:visited {text-decoration: nonecolor: #666666}
a:active {text-decoration: nonecolor: #666666}
不去掉的话,访问过的链接就会是灰色一直保留到你的清理缓存后。
不能在特定的一个页面上的元素上单独添加样式,以覆盖css文件的样式吗???
如果不去掉下边的两个样式,还有别的方法吗?(这些css样式是放在一个单独公用的css文件中的,不能轻易修改)
a:visited {text-decoration: nonecolor: #666666}
a:active {text-decoration: nonecolor: #666666}
如果这个文件不能动,那你就只能再写个文件,定义一个比这个文件更接近你目标连接的class或者伪类来覆盖这个文件的样式。比如,你的a标签加个id=a1,新的css文件里定义个a#a1{..},这样可以达到效果。
提醒lz:如果是团队项目而且你不是设计者,建议你按照人家设定好的来做,不要画蛇添足。