给legend加margin:0 auto;
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title></title> <style type="text/css"> legend{ margin: 0 auto; text-align: center; } </style> </head> <body> <fieldset> <legend>居中</legend> </fieldset> </body> </html>
本文介绍了一种使用CSS将HTML中的legend元素居中的方法。通过设置margin属性为0 auto,并结合text-align:center,可以轻松实现这一效果。
359

被折叠的 条评论
为什么被折叠?



