css div 实现图片从左向右自动横向排列

我们先来看看效果图片再一步步分析实例代码了。

首先我们来看这一块代码。

<dl>
     <dt>
     <a href="pbum.php?uid=14" ><span></span>
     <img src="http://111cn.net/124461405936.jpg" alt="image" width="170" height="120" /></a></dt>
      <dd class="activityphotoinfo">
     <div class="text">
     <p>公共相册&nbsp;</p>
     <p></p>   
     </div>
     <div class="poll"><a href="pbum.php?uid=14"></a></div>     
     </dd>
     </dl>

就这代码下面我们来看看css写法。

.gallery {
 list-style: none;
 margin: 0 0 0 10px;
 padding: 0;
}

.gallery dl {
 float:left;
 overflow: hidden;
 height: 180px;
 margin-top: 20px;
 margin-right: 0;
 margin-bottom: 0;
 margin-left: 0px;
 display: block;
 width: 230px;
 padding: 10px;
}
.gallery dt {
 padding: 0;
 position: relative;
 height: 130px;
 text-align: center;
 margin-bottom: 8px;
}
.activityphotoinfo {
 background:url(images/albumnameback.png) no-repeat top left;
 text-align:center;
 height:42px;
 width:185px;
 margin-top: 0;
 margin-right: auto;
 margin-bottom: 0;
 margin-left: auto;
 padding-top: 2px;
 padding-right: 0;
 padding-bottom: 0;
 padding-left: 0;
}
.activityphotoinfo div{
position:relative;
}
.activityphotoinfo .text {
 width: 100px;
 float: left;
 padding-left: 40px;
}
.activityphotoinfo   .text  p {
 display: block;
 line-height: 16px;
}
div.poll {
 display: block;
 height: 35px;
 width: 40px;
 top: 0px;
 right: 0px;
 cursor:pointer;
}
div.poll a {
 display: block;
 height: 35px;
 width: 40px;
 cursor:pointer;

 left: 0px;
 top: 0px;
 right: 0px;
 bottom: 0px;
}
.vote{
position:relative;
top:-20px;
left:60px;
display:block;
cursor:pointer;
height:38px;
width:42px;
margin:0 0 0 5px;
border:none;
background:none;
}
.gallery img {
 background: #fff;
 border: solid 1px #ccc;
 padding: 4px;
}
.gallery span {
 width: 77px;
 height: 27px;
 display: block;
 position: absolute;
 top: -12px;
 left: 50px;
 background: url(images/tape.png) no-repeat;
}
.gallery a {
 text-decoration: none;
}

哈哈我们的css div 实例图片从左向右自动横向排列效果就出来了。原创转载注明www.111cn.net/cssdiv/css.html

时间: 2024-10-25 07:01:42

css div 实现图片从左向右自动横向排列的相关文章

jQuery实现图片向左向右切换效果的简单实例_jquery

jQuery实现图片向左向右切换效果的简单实例 <div class="imageRotation container"> <div class="imageBox"> <img src="images/chugui.jpg"> <img src="images/ad_auto.jpg"> <img src="images/ad_home.jpg">

js实现图片从左往右渐变切换效果的方法_javascript技巧

本文实例讲述了js实现图片从左往右渐变切换效果的方法.分享给大家供大家参考.具体实现方法如下: 复制代码 代码如下: <style type="text/css"> .woon{border:1px solid #fff;} .wooff{border:1px solid #ffffff;filter:progid:DXImagetransform.Microsoft.Alpha(style=1,opacity=1500,finishOpacity=1);} </st

Javascript控制图片向左向右滚动代码(兼容FF、IE)

js-请问如何通过JS或者jQuery实现鼠标滑到某个div上 页面向左滑动 滑出则停止 向右同理

问题描述 请问如何通过JS或者jQuery实现鼠标滑到某个div上 页面向左滑动 滑出则停止 向右同理 如题. 我在页面上弄了两个div,一个是向左按钮一个是向右按钮. 页面属于左右滑动型. 如何实现鼠标滑到向左的那个div上 页面向左滑动 滑出则停止 向右同理? 谢谢各位大神!拜谢!! 拜托各位看清我的问题好吗,头两个答案根本牛头不对马嘴>.< 我说的是让页面滑动.另外,如果有代码最好--谢谢 解决方案 .on{height:50px;background:#eee}.dd{backgrou

js实现图片加载特效(从左到右,百叶窗,从中间到两边)

/* 网上百度的,感觉"从中间到两边"的效果写的不是很好,改了一下,感觉可以了! */ <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <script type="text/javascript"> var i

CSS中元素在某一行上 居中/居左/居右

我们在做网页的时候经常会遇到这样的需求,要求某张图片在某一行上 居中/居左/居右.传统的做法是用table来分配,但是这样做极其笨!! 如果我们采用CSS,一般有2种做法:1)设置这一行的div的style为:text-align:left; / text-align:center; / text-align:right; 2) 设置该元素的style为:float:left; / float:right; 注意:元素浮动没有向中间,只有向左或向右.

CSS打造无图片带箭头的DIV方框

<html>  <head>  <title>纯CSS无图片带箭头的DIV方框</title>  <style>  div.container{position:absolute;  top:30px;  left:40px;  font-size: 9pt;  display:block;  height:100px;  width:200px;  background-color:transparent;  *border:1px solid

三款css div 图片垂直居中代码

本文章收集了三款css教程 div 图片垂直居中代码哦,他可以对div进行垂直居中同时也可以对图片垂直居中哦,好了下面我们来看看这款垂直居中实例代码吧. cssbox{  /* 非ie内核浏览器识别垂直居中 */  display:table-cell;  vertical-align:middle;  /* ie内核浏览器识别垂直居中 */  *display:block;  /* 约为高度的0.873,200*0.873 约为175 */  *font-size:175px;  text-a

Android实现一种动画效果,从左到右慢慢的显示一张完整的图片

问题描述 Android实现一种动画效果,从左到右慢慢的显示一张完整的图片,我试过了Animation,没有做出来.有没有哪位大神帮忙解决下,万分感激 解决方案 解决方案二:改变坐标就行啊坐第一个沙发,接分咯解决方案三:怎么改变坐标,我不会,你能给个demo吗?解决方案四:例子在哪啊要看实际的东西解决方案五:可以试下ClipDrawable解决方案六:publicclassMainActivityextendsActivity{@OverrideprotectedvoidonCreate(Bun