🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
~~~ <title>Document</title> <style> /* margin-left:auto;margin-right:auto; 仅仅针对块元素有效 */ div{ width:100px; height: 100px; background: red; margin-left: auto; margin-right: auto; } button{ display: block; width:100px; height: 100px; background: red; margin-left: auto; margin-right: auto; } </style> </head> <body> <div> div </div> <button>btn</button> </body> ~~~