文章框架显示居中文字向左开始

我想要的是文章整体居中,文字向左开始
以下代码是标题和时间居中了,但文章是在左部,假如文章是居中的话,但是文字也是居中了。怎么解决这类问题

 <div style="text-align: center;font-family:Arial">
            <div style="font-size: 30px">
                <asp:Label ID="title" runat="server"></asp:Label>
            </div>
            <br />
            <div style="font-size: 15px">
                <asp:Label ID="time" runat="server"></asp:Label>
            </div>
            <br />
            <div style="font-size: 20px;text-align:left" >
                <asp:Label ID="content" runat="server" Width="1000px" Height="500px"></asp:Label>
            </div>
        </div>

容器加width:1000px;margin:0 auto进行整体居中

  <div style="text-align: center;font-family:Arial;width:1000px;margin:0 auto">