前端小技巧

来源:互联网 发布:程序员创业项目 编辑:程序博客网 时间:2024/06/05 09:39

一些前端代码的小技巧

1.如果需要上下左右居中

position:absolute;top:0;bottom:0;left:0;right:0;margin: auto;

一定不要忘了margin:auto;不然没有效果

0 0