如何在html页面中对齐图和表格?

时间:2018-12-14 14:42:45

标签: html jinja2

这是我的html文件内容:

<!doctype html>
<html>
    <head>
        <meta charset="UTF-8">
        <title>MyApp</title>
    </head>
    <body>
        {% block body %}
          <div align="center">
          <img  src= {{url}}"/>
          <table align="center">{{table}}</table>
          </div>
        {% endblock %}
    </body>
</html>

这是我的预期输出: enter image description here

我认为这种格式是一个Jinja模板,但是我从html文档中删除了此结构,并对其进行了一些更改。 You can find it here Jinja template

请告诉我如何对齐表格和图形的左侧(它们都应保持在页面中央)。

0 个答案:

没有答案