当前位置:Gxlcms > css > CSS揭秘,切图

CSS揭秘,切图

时间:2021-07-01 10:21:17 帮助过:29人阅读

书中说道一个关键的点,视觉的错觉:视觉的中点在偏上一点的位置(默默对自己说,不要用像素,别给自己挖坑。。。)

1.png

.center-display .object{
  position: absolute;
  width: 0.5em;
  height: 0.5em;
  top: 0;
  bottom: 0.8em;
  left: 0;
  right: 0;
  margin: auto auto;
  border-radius: 50%;
  background-color: red;
text-indent: -300em;
}
.center-display:nth-child(2) .object{
  bottom: 0;
}

居中和偏上一点点的代码,你能看出哪个是真真的放在中心吗?

Get busy living, or get busy dying.

人气教程排行