引导页底部小圆点的距离怎样能大一点

html-css012

引导页底部小圆点的距离怎样能大一点,第1张

position:fixed

bottom:0

这个方法简单好用

运用这个CSS把DIV永远置于页面的底部

利用绝对定位,然后设置底部距离为0

在一html引导页中加文字

<style>

.class{width: 200pxheight: 200pxbackground: url("图片路径") no-repeat}

</style>

注释:background: url("图片路径") no-repeat

repeat: 平铺整个页面,左右与上下

repeat-x: 在x轴上平铺,左右

repeat-y: 在y轴上平铺,上下

no-repeat: 图片不重复

<div class="class">

<p>文字内容</p>

</div>