对中问题(水平)

时间:2010-07-30 04:51:13

标签: javascript css

我希望水平居中这个材料:

    <a href='/big.jpg' class = 'cloud-zoom' id='zoom1'
        rel="">
        <img src="/small.jpg" alt='' title="Optional title display" />
    </a>

2 个答案:

答案 0 :(得分:0)

虽然问题不清楚需要哪些中心对齐,但您可以查看以下链接 -

http://www.gtalbot.org/NvuSection/NvuWebDesignTips/HorizontalAlignment.html

答案 1 :(得分:0)

text-align:center添加到您的主播。我假设您的zoom1具有display:block样式,其width大于图片的宽度。

<a href='/big.jpg' class = 'cloud-zoom' id='zoom1' rel="" style="display:block; width:400px; border:1px solid red; text-align:center">
    <img src="/small.jpg" alt='' title="Optional title display" />
</a>