您好,
我创建了一个弹出窗口,该弹出窗口最右边有一个关闭按钮。我尝试通过放置:
来对齐该图像position:absolute;
right:0px;
top:0px;
但它没有正确对齐..可以任何一个帮助。!!!!
这是我的代码..
<!DOCTYPE>
<html>
<head>
<title> New Document </title>
<style>
div.irmGraphPopup{
border:10px solid black;
width:1000px;
height:500px;
position:absolute;
}
div.irmGraphPopup span:{
position:absolute;
right:0px;
top:0px;
}
</style>
</head>
<body>
<div class="irmGraphPopup">
<span> <img src="round_black_close2.png" alt="Close"/></span>
</div>
</body>
</html>
答案 0 :(得分:5)
你有一个错字:
div.irmGraphPopup span{
position:absolute;
right:0px;
top:0px;
}
删除:
答案 1 :(得分:2)
是你的css选择器
<!DOCTYPE>
<html>
<head>
<title> New Document </title>
<style>
div.irmGraphPopup{
border:10px solid black;
width:1000px;
height:500px;
position:absolute;
}
#myid{
position:absolute;
right:0px;
top:0px;
}
</style>
</head>
<body>
<div class="irmGraphPopup">
<span id=myid> <img src="round_black_close2.png" alt="Close"/></span>
</div>
</body>
</html>
答案 2 :(得分:1)
如果你解决了错字,请为我做好准备。它应该是
div.irmGraphPopup span {
不
div.irmGraphPopup span:{
答案 3 :(得分:0)
将div.irmGraphPopup的position元素更改为relative。然后跨度在关系中
div.irmGraphPopup{
border:10px solid black;
width:1000px;
height:500px;
position:relative;
}