Blogger Information
Blog 6
fans 0
comment 0
visits 3807
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
补作业——0703作业
18年了要发呀
Original
502 people have browsed it

iframe和a标签是通过name属性值进行关联的,a标签的target的属性值要等于iframe的name值,就会将a标签的href值在框架中打开
代码

  1. <div id="box">
  2. <ul>
  3. <li><a href="http://www.baidu.com" target="ok">内容管理</a></li>
  4. <li><a href="http://www.php.cn" target="ok">栏目管理</a></li>
  5. <li><a href="http://www.aliyun.cn" target="ok">用户管理</a></li>
  6. <li><a href="http://www.qq.com" target="ok">财务管理</a></li>
  7. </ul>
  8. </div>
  9. <div>
  10. <iframe src="" name="ok" width="900" height="500" frameborder="0"></iframe>
  11. </div>

内联样式就是标签内通过style=””属性来写的css样式叫做内联样式,如下

  1. <a href="http://www.baidu.com" style="font-size: 25px">内联样式</a>

内部样式一般是指写在标签head中的<style></style>之间的CSS样式,如下

  1. <head>
  2. <meta charset="UTF-8">
  3. <title>0703</title>
  4. <style>
  5. .ok{font-size: 50px}
  6. </style>
  7. </head>

外部样式是指通过link属性引入的css样式文件,如下

  1. <link rel="stylesheet" href="style.css">

盒模型的内边距是指内容距离盒子的边距,外边距是指盒子距离外部的边距,内边距通过padding来控制,外边距通过margin来控制。
padding和margin都有对应的上下左右属性,排列方式是顺时针,上右下左
分别为padding-top padding-right padding-bottom padding-left
和margin-top margin-right margin-bottom margin-left

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post