Как я могу выровнять плавающее изображение в правом нижнем углу моего текста?У меня есть div, который имеет цвет фона и содержит текст.Я хочу видеть изображение в этом теге div, в правом нижнем углу.Любое решение CSS ??
<div id="myText">
A lot of text here A lot of text here A lot of text here A lot of text here A lot of text here A lot of text here A lot of text here A lot of text here A lot of text here A lot of text here A lot of text here A lot of text here A lot of text here
<img id ="info_ico" src="images/key_ico.png" />
<div>
#myText
{
background:#fdf6cc;
min-height: 90px;
margin-left:1px;
width: 913 px;
padding-left: 30px;
}
#info_ico
{
float:right;
clear:right;
}
Что теперь изменить, чтобы увидеть изображение внизу текста?