一些实用的Django+HTML设置

2019-12-04 08:42:40来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

一些实用的Django+HTML设置

一、关于引入变量

1.变量引入方法:

{% block 块名称 %}

<p>{{变量名}}<p>

{% endblock %}

 

2.引入变量的值中标签是否转义:

不转义:

{% autoescape off %}

...HTML代码...

{% endautoescape %}

 

转义:

{% autoescape on %}

...HTML代码...

{% endautoescape %}

 

或者部分不转义部分转义:

{% autoescape off %}

...HTML代码...

{% autoescape on %}

...HTML代码...

{% endautoescape %}

 

 

二、表格数据水平+垂直居中

<td style="text-align:center;vertical-align:middle;margin:auto">表格数据</td>

 

 

三、表格列名跨行显示

使用 rowspan/colspan 属性,代表占用多少行/列,以下为代码和效果图

代码:

<table border="1" summary="this table gives some statistics about fruit
   flies: average height and weight, and percentage
     with red eyes (for both males and females).">
    <caption>
        <em>
            A test table with merged cells.
        </em>
    </caption>
    <tbody>
        <tr>
            <th rowspan="2">Gender&nbsp;</th>
            <th colspan="1">Max</th>
            <th colspan="1">Min</th>
            <th rowspan="2">Rate</th>
        </tr>
        <tr>
            <th>Height</th>
            <th>Weight</th>
        </tr>
        <tr>
            <td>Male</td>
            <td>1.9</td>
            <td>100</td>
            <td>40%</td>
        </tr>
        <tr>
            <td>Female</td>
            <td>1.7</td>
            <td>88</td>
            <td>43%</td>
        </tr>
    </tbody>
</table>
<p>

 

简化的效果图:

 

 

 

 

 

 

 


原文链接:https://www.cnblogs.com/monlecaso/p/11983190.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:【前端词典】进阶必备的网络基础

下一篇:html中的a标签详解