码迷,mamicode.com
首页 > Web开发 > 详细

009_HTML布局、响应式设计

时间:2020-02-29 00:47:30      阅读:88      评论:0      收藏:0      [点我收藏+]

标签:com   ttl   web设计   alc   dom   设计   htm   style   trap   

HTML布局

网站常以杂志、报纸样式显示

使用<div>元素的HTML布局,方便通过css对其进行设计

<!DOCTYPE html>

<html>

<head>

<style>

#header{

background-color:balck;

color:white;

text-align:center;

padding:5px:}

#nav{

line-heitht:30px;

background-color:#eeeeee;

height:300px;

width:100px;

float:left;

padding:5px;{

#section{

width:350px;

float:left;

padding:10px;}

#flooter{

background-color:bkack;

color:white;

clear:both;

text-align:center;

padding:5px;}

</style>

</head>

<body>

<div id="header">

<h1>City Gallery</h1>

</div>

<div id="nav">

London</br>

Paris</br>

Tokyo</br>

</div>

<div id="section">

<h2>London</h2>

<p>

London is the capital city of England. It is the most populous city in the United Kingdom.

</p>

<p>

Standing on the River Thames,London has been a major settlement for two millennia.

</p>

</div>

<div id="footer">

Copyrith ? linyuansun.com

</div>

</body>

</html>

 

 

--------------------------------------------------------------------------------------------------------------------------

HTML响应式web设计

RWD,响应式web设计(Responsive Web Design),能够以可变的尺寸传递网页

RWD对于平板和移动设备是必需的

一般使用现有的框架快速实现,如Bootstrap框架

 

009_HTML布局、响应式设计

标签:com   ttl   web设计   alc   dom   设计   htm   style   trap   

原文地址:https://www.cnblogs.com/linyuansun/p/12380999.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!