使用2 div固定(页眉和页脚)调整图像大小

时间:2012-06-05 16:29:46

标签: css html resize fixed

我的问题: enter image description here

我需要做什么:

enter image description here

有人可以帮帮我吗?网址:thiago **** solano(。)com(。)br / index2.php /(退休****)

非常感谢!

3 个答案:

答案 0 :(得分:0)

更改PrettyPhoto的默认宽度和高度:

pp_settings = jQuery.extend({
...
default_width: 500,
default_height: 344,
...

答案 1 :(得分:0)

对于固定宽度,您可以将图像的宽度设置为800px,或者对于稍微动态的宽度,可能更好,80%。

然后,将图像放在div内,并将左右边距设置为自动

divImgContainer{
    display:inline-block;
    margin-left:auto;
    margin-right:auto;
 }

答案 2 :(得分:0)

我无法真正看到你的链接。

无论如何,我会做的就是针对这样的img(可能是一个类):

<img class="imgClass" src="myImage.jpg" />


.imgClass{
  display:block;
  margin:0 auto;
}