默认值:auto
继承性:yes
版本:CSS2
JavaScript 语法:object.style.tableLayout="fixed"
<html><head>...</head>
<body>
<div>...</div>
<div id="main" class="main" >
{__CONTENT__}
</div>
<div>...</div>
</body>
其实就是一个完整的html网页的形式,其中{__CONTENT__}部分就替换为需要使用这个模板的页面
为了模块化,也可以将layout.html的头部和尾部分开,用include引入
<include file="Public:header" /><div id="main" class="main" >
{__CONTENT__}
</div>
<include file="Public:bottom" />
参考thinkphp开发手册模板布局一节http://doc.thinkphp.cn/manual/layout_template.html
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)