常用的属性

text-decoration:none; 这个常作为<a>元素的属性,用来取消链接的下划线
border-radius: 8px; 让边框变为圆形

 

transition: 样式名 过渡时间;
animation

#div1{
	60px;
	height: 60px;
	-webkit-animation: first 5s;
	background-color: black;
}
@-webkit-keyframes first{
	from {background-color: red;}
	to {background-color: blue;}
}

 注:from可以换成百分比形式。

title="鼠标移上去显示的文字"

 

及时行乐
原文地址:https://www.cnblogs.com/leomei91/p/7094502.html