上一页 1 ··· 4 5 6 7 8 9 10 下一页
摘要: <!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Document</title></head><body> <table width="400" height="400" border="1" cellspaci 阅读全文
posted @ 2017-02-11 06:58 行走de猫 阅读(184) 评论(0) 推荐(0) 编辑
摘要: float 属性 3个属性值leftrightnone 特点:元素会左移,或右移,直至触碰到容器为止 设置了浮动的元素,仍旧处于标准文档流中 清除浮动的常用方法clear:both 同时设置width:100% 横向两列布局网页布局最常见的方式之一 主要应用技能 float属性-使纵向排列的块级元素 阅读全文
posted @ 2017-02-10 08:08 行走de猫 阅读(103) 评论(0) 推荐(0) 编辑
摘要: 盒子模型=网页布局的基石 ,由4部分组成: 边框(border)外边距(margin)内边距(padding)盒子中的内容(content) 二个属性值:(上/下、左/右)三个属性值:(上、左/右、下)一个属性值:四个方向相同 吉米的书图片排版 样式表方式:外部样式内部样式 行内样式 <style 阅读全文
posted @ 2017-02-07 18:56 行走de猫 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 由万维网联盟制定的一系列标准,包括: 结构化标准语言(html和xml) 表现标准语言(css) 行为标准语言(DOM和ECMAScript) 倡导结构、样式、行为分离 CSS中,存在3种的定位机制: 标准文档流 浮动 绝对定位 标准文档流 特点: 从上到下,从左到右,输出文档内容 由块级元素和行级 阅读全文
posted @ 2017-02-07 18:54 行走de猫 阅读(180) 评论(0) 推荐(0) 编辑
摘要: 表单 表单的作用是收集信息 表单的组成 提示信息 表单控件 表单域 <form action="1.php" method="get">属性:action处理信息Method="get/post"get通过地址栏提供(传输信息),安全性差post通过文件处理信息,安全性高 文本输入框 maxleng 阅读全文
posted @ 2017-02-07 08:23 行走de猫 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 什么是网页布局? 网页布局是网页制作的基础。 DIV+CSS布局网页 流式布局、浮动布局、绝对定位布局 相关知识点 标准文档流 盒子模型 float属性 position属性 三个案例 自动居中-列布局案例--盒子模型的使用方法 浮动布局案例--float属性 解决浮动影响的方法 绝对定位布局案例- 阅读全文
posted @ 2017-02-06 17:39 行走de猫 阅读(86) 评论(0) 推荐(0) 编辑
摘要: 评论内容: <textarea name="content" rows="5" cols="30">请在此处留下您宝贵的意见</textarea> 上传文件 <input type="file"> 文本框 <input type="text"> 密码框 <input type="password"> 阅读全文
posted @ 2017-02-06 06:55 行走de猫 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 表格的标准结构 <table> <thead> <tr> <td></td> <td></td> </tr> </thead> <tbody> <tr> <td></td> <td></td> </tr> </tbody> <tfoot> <tr> <td></td> <td></td> </tr> 阅读全文
posted @ 2017-02-04 18:35 行走de猫 阅读(1861) 评论(0) 推荐(0) 编辑
摘要: 表格 展示数据。是对网页重构的一个有益补充。 <table> 表格 <tr> 行 <td></td>列 <td></td> </tr></table> 属性border="1" 边框粗细width="500" 宽带height="300" 高度cellspacing 表格之间的距离cellpaddi 阅读全文
posted @ 2017-02-03 17:03 行走de猫 阅读(86) 评论(0) 推荐(0) 编辑
摘要: 2.1 !+tab html5的标签结构 2.2 meta标签 编码<meta charest="UTF-8">Charest 编码utf-8 同意字符集 支持全世界180-200个国家的语言 关键字<meta name="keyword" content="php,java">keyword 关键 阅读全文
posted @ 2017-02-03 17:01 行走de猫 阅读(179) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 下一页