HTML对齐LEGEND中心

时间:2011-03-05 11:35:48

标签: html

如何调整图例宽度?所以我可以把它放在屏幕上。

<fieldset>
<legend align="center">LOGIN</legend>
</fieldset>

2 个答案:

答案 0 :(得分:5)

图例元素属性可以通过CSS修改,就像任何其他元素一样。以下是100%宽度,居中文本和黄色背景的图例示例:http://jsfiddle.net/Y7DnS/1/

HTML

<fieldset>
    <legend>LOGIN</legend>
    <input type="submit" value="OK" name="submit" />
</fieldset>

CSS

fieldset { border: 1px solid grey; padding: 10px; }
legend {
    background: yellow;
    width: 100%;
    text-align: center;
}

答案 1 :(得分:3)

.simpleSolutionInCss{
    text-align: center;
    margin: auto;
}