Microsoft Expression Web - HTML 布局



在本章中,我们将学习另一种设计页面布局的方法。在上一章中,我们使用了样式表将样式应用于页眉、页脚等,但您也可以在 HTML 页面本身中指定样式,而无需使用额外的样式表。

这不是推荐的设计布局的方式,但是为了理解的目的,我们将在本文中介绍此技术。请尝试按照以下步骤操作。

步骤 1 - 让我们添加一个 HTML 页面并将其命名为layoutdemo.html

Layoutdemo

步骤 2 - 现在从工具箱中添加<div>标签

<div> tag

步骤 3 - 在应用样式面板中,点击新建样式…

Applystyles

步骤 4 - 当您从“定义位置”下拉列表中选择“当前页面”选项时,样式将保存在同一 HTML 页面中。设置页面的字体,然后转到“背景”类别。

Define in

步骤 5 - 设置背景颜色。您还可以设置边框、盒子和位置类别,然后单击“确定”。

Position Categories

layoutdemo.html

您可以看到样式已添加到同一 HTML 文件中。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns = "http://www.w3.org/1999/xhtml">  
   <head> 
      <meta content = "text/html; charset = utf-8" http-equiv = "Content-Type" /> 
      <title>Untitled 1</title> 
      <style type = "text/css">
         #container { 
            font-family: Arial, Helvetica, sans-serif; 
            font-size: medium; 
            font-weight: normal; 
            font-style: normal; 
            font-variant: normal; 
            text-transform: capitalize; 
            color: #800000; 
            background-color: #C0C0C0; 
            padding: 8px; 
            margin: 8px; 
            width: 90%; 
         } 
      </style> 
   </head>  

   <body> 
      <div id = "container"></div> 
   </body> 
</html> 

类似地,您可以添加其他样式,例如页眉、页脚、主要内容等,如上所示。

广告