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

 

transition: 样式名 过渡时间;
animation

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

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

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

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-05-25
  • 2021-04-11
  • 2021-06-14
  • 2022-02-09
猜你喜欢
  • 2022-12-23
  • 2021-12-01
  • 2022-02-16
  • 2022-02-05
  • 2021-06-17
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案