HTML的全部菜鸟,所以这可能是一个非常简单的解决方案。
我正在尝试将gif图像放置在网页的中心和底部。 当然这不会发生。
get_next_train(params, lambda x: x["prognosis"])
get_next_train(params, lambda x: x)
我需要添加什么(如果有的话)以将图像沿其行放置在任何地方?
预先感谢 史蒂夫
答案 0 :(得分:1)
使用CSS在页面上定位元素要容易得多。如果您还不熟悉CSS或至少不熟悉CSS,我强烈建议您外出并从中找到许多教程。
据我所知,请执行以下操作:
<img src="http://bglradio.net/sam/Web-Images/dancing-girl-6.gif" alt="Dancing Girl" width="160" height="250" style="left: 50%; position: fixed; bottom: 0px; margin-left: -80px">
应将图像完美居中并将其锚定到页面底部。如果您是菜鸟,那就是很多CSS了,这就是为什么我要再说一遍,请确保您开始学习CSS。
希望这会有所帮助。
答案 1 :(得分:0)
add class to the image to call it through some css like here
<!DOCTYPE html>
<html>
<head>
<style>
.dancing {
position: absolute;
right: 0px;
bottom: 0px;
}
</style>
</head>
<body><img class="dancing" src="http://bglradio.net/sam/Web-Images/dancing-girl-6.gif" alt="Dancing Girl" width="160" height="250" align="bottom" >
</body>
</html>