css如何将图像定位在左下角?这样写,谢谢。

来源:百度知道 编辑:UC知道 时间:2024/06/17 02:42:00

2楼的回答也可以呵呵那是绝对定位
也可以这样大众方法
{margin-bottom:0;
maigin-left:0;
}

{
position:absolute;
left:0px;
bottom:px;
}

加CSS代码到样式定义中,
url(imagename.gif) left bottom no-repeat;

另外还可以定位到左上,右下等等!

用padding或者margin定吧``
其它好象没什么好的办法``