样式布局

<!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 http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>格式布局</title>
<style type="text/css">
*/*针对所有标签起作用*/
{
    margin:0px;/*去除所有边距magin表示靠近最近的边*/
    padding:0px;/*去除所有间距*/
}
.box
{
    opacity:0.5; moz-opactiy:0.5; filter:alpha(opacity=50)
}
</style>
</head>

<body>
position 写在样式表里,也可以写在style里<br />
样式表要优先于style<br />
后写的代码要盖住前写的代码<br />
一、poistion:fixed<br />

锁定位置,例如有些网站的右下角弹窗广告等<br />
相对于浏览器的显示页面定位的<br />
<div style="width:100px; height:100px; border::5px solid blue; background-color:#090;
right:0px; bottom:0px; position:fixed;">fixed显示位置</div>

二、position:absolute   绝对定位<br />
(1)外层没有position:absolute(或relative)那么div相对于heml页面定位。<br />
(2)外层如果有position:absolute(或relative)那么div相对于外层边框定位<br />
<div  style=" border:2px solid red; width:400px; height:200px; ">c
</div>

<div  style=" border:2px solid red; width:400px; height:200px; position:absolute; ">absolute外层无position:absolute
<div style="border:1px solid red; width:100px; height:100px; right:30px; bottom:50px; background-color:#FF0;position:absolute">
position:absolute有外层position:absolute
</div>
</div>

<div style="border:1px solid red; width:100px; height:100px; right:30px; bottom:50px; background:#FF0; position:absolute">
position:absolute外层无position
</div>

<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />

三、position:relative<br />
相对于默认位置static的移动。自我理解为相对于div插入位置重新定义位置<br />
<div style="width:100px; height:100px; border:5px solid blue; background-color:#993; top:30px; left:100px; position:relative">
relative界面图
</div>
<br />
<br />
<br />
<br />

四、分层(z-index:)<br />
在z轴方向分层,可以理解为一摞纸,层数越高越靠上。<br />
z-index值默认为1,需要位于上面的值大于下面的值<br />
<div style="border:1px solid orange; width:100px; height:100px; left:30px; top:30px; position:relative; background-color:#00C;
z-index:2">分层1</div>
<div style="border:1px solid orange; width:100px; height:100px; left:50px; bottom:50px; position:relative; background-color:#00C;">分层2</div>

<br />
<br />
overflow:hidden;//超出部分隐藏;scroll,显示滚动条<br />
<div style="border:1px solid orange; width:100px; height:100px; left:30px; top:30px; position:relative; background-color:#00C;
overflow:hidden;">分层1
<div style="border:1px solid orange; width:100px; height:100px; left:50px; bottom:50px; position:relative; background-color:#00C;
">分层2
</div>
</div>
<br />
<br />
<br />
<br />

五、float:left、right<br />

<!--<div style="clear:both"></div>  截断流 -->
<div style="border:1px solid orange; width:50px; height:100px;   background-color:#00C;
float:left;">1</div>
<div style="border:1px solid orange; width:50px; height:100px;  background-color:#00C;
float:right;">2</div><br />
<br />
<br /><br />
<br />
<br />
<br />
<br />
<br />

<br />

半透明效果<br />
<div   style="background:#900;"class="box">透明区域</div>

</body>
</html>
时间: 2024-10-09 22:02:29

样式布局的相关文章

Android 样式布局

一.样式布局 首先,先看下面这段样式布局代码,这里称在xml控件上添加属性为内联(仅限于本篇博文这样称呼): <Button android:id="@+id/crime_date" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="16dp" android:layout

蓝鸥零基础学习HTML5第八讲 样式布局一

蓝鸥零基础学习HTML5第八讲 样式布局一 1.浮动到底是什么鬼 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Document</title> <style> /*body { font-size:0px; }*/ div { width:100px; height:100px; text-align: center; line

蓝鸥零基础学习HTML5第八讲 样式布局二

蓝鸥零基础学习HTML5第八讲 样式布局二 1.定位的属性及特性 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Document</title> <style> #box1 { width:400px; height:400px; border:10px solid red; margin:0 auto; position: re

android样式布局---&amp;gt;ListView(附上源代码)

在android应用开发过程中,Listview 是经常使用的数据展现控件,往往用于显示列表形式的数据. 假设只显示数据往往会显得非常单调.非常多时候依据须要定义不同的item 背景选项.比如定义数据的标题.表头或者间隔显示Listview item背景内容. 如图的所看到的的背景内容,如今以一个WeatherDemo为模型分析Listview的相关用法. 实现思路:定义Listview不同的背景,首先要定义好标题与表格内容的两个不同的xml布局文件(city_item.xml,content_

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 http-equiv="Content-

CSS3多栏样式布局

看书的时候,遇到了CSS3一个新的多栏布局样式属性,测试了一下,贴段代码出来: 目前这个属性还是需要带上浏览器内核的私有前缀: 先看html代码: 1 <BODY> 2 <div class='main'> 3 <p>My father was a self-taught mandolin player. He was one of the best string instrument players in our town. He could not read mus

任务七:实现常见的技术产品官网的页面结构及样式布局

任务目的 通过实现一个常见的技术产品官网,加深对于HTML,CSS的实战能力 学习掌握如何在没有标注的情况下实现设计稿到页面的精确转变 任务描述 通过HTML及CSS实现设计稿 设计稿PSD文件(点击下载),效果如 效果图(点击打开) 设计稿是有一定宽度的,这个宽度为页面的最小宽度,也就是说,当浏览器窗口宽度小于设计稿宽度时,允许出现横向滚动条,页面内容宽度保持不变,但是当浏览器窗口宽度大于设计稿宽度时,页面部分内容的宽度应该保持和浏览器窗口宽度一致,具体哪些部分题目不做具体指明,看看大家的判断

CSS实现样式布局

使用CSS建站时,您肯定遇到过形形色色的布局问题,最后可能被搞得焦头烂额.本文的目的是让您的设计过程更为容易,当您遇到困难时为您提供快速参考. 1.有疑问,先验证 在调试时,先对您的代码进行验证往往能省去不少麻烦事.格式不正确的XHTML/CSS 会导致许多布局上的错误.在其他浏览器中进行测试之前,请先在最先进的浏览器中撰写和测试CSS代码,而不是相反. 如果您在破旧的浏览器中编写和测试,你的代码就不得不依赖那个破旧浏览器的糟糕的显示,然后在符合标准的浏览器中进行测试,看到显示结果“不正常” 时

表格布局----基于bootstrap样式 布局

在实际开发中,我们通过菜鸟教程复制的表格往往不能满足我们的开发需求,样式很难看,而且不能自适应,尤其是需要到处Excel的样式,感觉非常糟糕,这次我就写了一个表单,不足之处,希望大神们多多指教: 代码如下: 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>查询详情</title> 5 <meta name="keywords" content=""/>