如何将图像对齐div的左上角

时间:2013-08-26 10:02:32

标签: css

代码如下:

CSS

#block { 
    border-width: 2px; 
    border-color: #4682B4; 
    background-color: #E0FFFF; 
    width: 200px; 
    text-align: center; 
}

HTML

<div id="block">
<h3>Test header</h3>

<p>
<img height="100" style="max-width: 120px;background-position: top left;" src="http://socialmediababe.com/wp-content/uploads/2010/12/administrator.jpg" />
</p>

<p>
Test text
</p>
</div>

产生这个:

enter image description here

如何将图像对齐到屏幕的左上角?

左上角我指的是与箭头所示的点对齐:

enter image description here

我试过'背景位置:左上角;'但这没有任何区别。

尝试'Fags'回答后,我收到了同样的结果:

enter image description here

4 个答案:

答案 0 :(得分:3)

喜欢这个

<强> DEMO

<强> CSS

*{
    margin:0;
    padding:0;
}
#block { 
    border-width: 2px; 
    border-color: #4682B4; 
    background-color: #E0FFFF; 
    width: 200px; 
    text-align: center; 
    line-height:30px;
    padding:3px 0;
}

<强> DEMO1

答案 1 :(得分:2)

根据当前代码,尝试此修复程序;它接近你想要的结果。

由于div的背景颜色与图像不同,因此看起来有点奇怪。

PS:你总是可以拥有透明的图像。

FIDDLE

#block { 
    border-width: 2px; 
    border-color: #4682B4; 
    background-color: #E0FFFF; 
    width: 200px; 
    text-align: center; 
    overflow:hidden;
}
img{
   float:left;
}

如果您有更多需要定位的img标签,请为单个图像样式创建css类或ID。

输出:

enter image description here

答案 2 :(得分:1)

HTML元素具有默认行为,其中它们具有设置值margin,padding,line-height等。您需要先重置它们,然后根据您的要求自定义它们。

您可以查看以下 CSS RESET 链接以供参考。

守则:

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

您需要在样式表中添加上述代码以重置元素的默认行为。这将删除其默认特征,然后您可以自定义元素。

我希望这会有所帮助。

答案 3 :(得分:0)

根据我的理解,使用float:left将图片左侧对齐并更改HTML结构。我认为您正在寻找类似http://jsfiddle.net/H4F8H/12/

的内容