Jump to content
  • 0

Стили .


dima2207
 Share

Question

Всем привет !

Как с помощью стилей сделать чтобы надпись была под картинкой а-не справа и чтобы надпись невыходила за пределы картинки .

есть код :

#motioncontainer {
margin:0 auto;/* Uncomment this line if you wish to center the gallery on page */
width: 600px; /* Set to gallery width, in px or percentage */
height: 150px; /* Set to gallery height */
}

#motioncontainer a img {
border: 1px solid #cccccc; /* Set image border color */
}

#motioncontainer a:hover img {
border: 1px solid navy; /* Set image border hover color */
}

#statusdiv {
background-color: lightyellow;
border: 1px solid gray;
padding: 2px;
position: absolute; /* Stop Editing Gallery Styles */
left: -300px;
visibility: hidden;
}

#motioncontainer a:hover {
color: red; /* Dummy definition to overcome IE bug */

}

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Дело в следующем : есть скрипт фотогалереи , я его немного переработал , добавил что-бы инфа бралась из бд и в цикле выводилась на экран :

<div id="motioncontainer" style="position:relative;overflow:hidden;">
<div id="motiongallery" style="position:absolute;left:50;top:0;white-space: nowrap;">
<nobr id="trueContainer">
<? for ($t=1;$t<count($news1);$t++){
if ($news1[$t]==''){}
else {

?> <a href="<?=@$news1[$t];?>" rel="lightbox" title="<center><font color=red><?=@$news3[$t];?>
СКАЧАТЬ ЭТО ФИЛЬМÌ</font></center>" rev="index.php?oz=<?=@$news2[$t];?>"><img src="<?=@$news1[$t];?>" width="70" height="111" alt="" border="0"></a>

<?
}
?>
</nobr>
</div>
</div>

И все было-б нормально если не одно но, а именно когда я пытаюсь разместить надпись прямо под картинкой , то у меня получается что картинки распологаются не в ряд а в столбик , что само по себе неприемлемо . подскажите как разместить надписи прямо под картинкой и желательно что-бы надписи не вылазили за пределы картинки .

Link to comment
Share on other sites

  • 0

=@$news3[$t];?>

СКАЧАТЬ ЭТО ФИЛЬМÌ" rev="index.php?oz==@$news2[$t];?>">

это пардон что за фигня? с каких пор в title находятся тэги?

ошибка как и предполагал в неправильном коде:)

title - всплывающая подсказка при наведении, она не выводится до или после картинки. если такое и произошло, то как раз из-за попытки браузера исправить ошибки в коде, т.к. в предоставленном куске имеется вывод только картинки и никакого текста.

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy