Javascript-форум (https://javascript.ru/forum/)
-   (X)HTML/CSS (https://javascript.ru/forum/xhtml-html-css/)
-   -   Позиуионирование списка ul (https://javascript.ru/forum/xhtml-html-css/16578-poziuionirovanie-spiska-ul.html)

0931454574 13.04.2011 13:58

Позиуионирование списка ul
 
<ul class="gallery" >
    	  <li><a href="images/Galary/1_full.jpg" rel="prettyPhoto[gallery1]" title=""><img src="images/Galary/mini/1_full.jpg" alt="image" /><span class="photo"></span></a></li>
	<li><a href="images/Galary/2_full.jpg" rel="prettyPhoto[gallery1]" title=""><img src="images/Galary/mini/2_full.jpg" alt="image" /><span class="photo"></span></a></li>
	<li><a href="images/Galary/3_full.jpg" rel="prettyPhoto[gallery1]" title=""><img src="images/Galary/mini/3_full.jpg" alt="image" /><span class="photo"></span></a></li>
	<li><a href="images/Galary/4_full.jpg" rel="prettyPhoto[gallery1]" title=""><img src="images/Galary/mini/4_full.jpg" alt="image" /><span class="photo"></span></a></li>
	<li><a href="images/Galary/5_full.jpg" rel="prettyPhoto[gallery1]" title=""><img src="images/Galary/mini/5_full.jpg" alt="image" /><span class="photo"></span></a></li>
	<li><a href="images/Galary/6_full.jpg" rel="prettyPhoto[gallery1]" title=""><img src="images/Galary/mini/6_full.jpg" alt="image" /><span class="photo"></span></a></li>
		</ul>


.gallery {

list-style: none;
margin: 0;
padding: 0;
}

.gallery ul {

list-style: none;
margin: 0;
float: right;
list-style: none;
position: relative; /*--Set relative positioning on the unordered list itself - not on the list item--*/

}


.gallery li {
margin: 10px;
padding: 0;
float: left;
position: relative;
width: 180px;
height: 135px;
}
.gallery img {
background: #fff;
border: solid 1px #ccc;
padding: 4px;
}
.gallery span {
width: 20px;
height: 18px;
display: block;
position: absolute;
bottom: 10px;
right: 10px;
}

.gallery .photo {
background: url(../all_images/content/photo.gif) no-repeat;
}

.gallery a:hover img {
border-color: #666;
}
.gallery a:hover span {
background-position: left -22px;
}

И казалось бы все хорошо , но данный список не работает в IE то есть он там отобраджается как столбец а в mzila opera как линия, ну или если места нехватает то переходит на другую строку.

Что это?

ksa 13.04.2011 14:24

Цитата:

Сообщение от 0931454574
данный список не работает в IE то есть он там отобраджается как столбец

В моём ИЕ7 таки в строчку...

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
.gallery {
list-style: none;
margin: 0;
padding: 0;
}
.gallery ul {
list-style: none;
margin: 0;
float: right;
list-style: none;
position: relative; /*--Set relative positioning on the unordered list itself - not on the list item--*/
}
.gallery li {
margin: 10px;
padding: 0;
float: left;
position: relative;
width: 180px;
height: 135px;
}
.gallery img {
background: #fff;
border: solid 1px #ccc;
padding: 4px;
}
.gallery span {
width: 20px;
height: 18px;
display: block;
position: absolute;
bottom: 10px;
right: 10px;
}
.gallery .photo {
background: url(../all_images/content/photo.gif) no-repeat;
}
.gallery a:hover img {
border-color: #666;
}
.gallery a:hover span {
background-position: left -22px;
}
</style>
<script type="text/javascript">
</script>
</head>
<body>
<ul class="gallery" >
	<li><a href="images/Galary/1_full.jpg" rel="prettyPhoto[gallery1]" title=""><img src="images/Galary/mini/1_full.jpg" alt="image" /><span class="photo"></span></a></li>
	<li><a href="images/Galary/2_full.jpg" rel="prettyPhoto[gallery1]" title=""><img src="images/Galary/mini/2_full.jpg" alt="image" /><span class="photo"></span></a></li>
	<li><a href="images/Galary/3_full.jpg" rel="prettyPhoto[gallery1]" title=""><img src="images/Galary/mini/3_full.jpg" alt="image" /><span class="photo"></span></a></li>
	<li><a href="images/Galary/4_full.jpg" rel="prettyPhoto[gallery1]" title=""><img src="images/Galary/mini/4_full.jpg" alt="image" /><span class="photo"></span></a></li>
	<li><a href="images/Galary/5_full.jpg" rel="prettyPhoto[gallery1]" title=""><img src="images/Galary/mini/5_full.jpg" alt="image" /><span class="photo"></span></a></li>
	<li><a href="images/Galary/6_full.jpg" rel="prettyPhoto[gallery1]" title=""><img src="images/Galary/mini/6_full.jpg" alt="image" /><span class="photo"></span></a></li>
</ul>
</body>
</html>

0931454574 13.04.2011 14:56

черт подери этот ie6.


Часовой пояс GMT +3, время: 18:49.