浮点数填充不为0

浮点数填充不为0

我正在尝试使图像完全在DIV上显示,但没有发生:\

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

<head>
    <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<style>* { margin:0;padding:0; }
#login {
background:red;
width:200px;
xpadding:5px;
}
#login a, #login a:visited {
color:blue;
text-decoration:none;
font:12px verdana;
}
</style>
    <title>Untitled 1</title>
</head>

<body>



<div id="login"><div style="float:right;margin-right:5px;"><img src="https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png" /> </div>

<div style="float:right;color:red;text-align:right;"><a href="#">@Testing</a><br /><a href="?wipe=1">Logout</a></div>
<div style="clear:both;"></div></div>

</body>
</html>


尝试说一下... http://htmledit.squarefree.com/,当边界应一直向右浮动时,您会看到红色仍在边框的右侧可见。

最佳答案

<div style="float:right,margin-right:5px;">

右边距:5px

关于html - 浮点数填充不为0:右,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6449427/

10-09 07:45