-2

I have a this page:

http://77.240.118.188/contacto  

As you can see, "Delegacion Madrid" is almost inline with the menu. If the menu is inside a <div>, why "Delegación Madrid" is not totally below the menu, but occupying a part of the menu?

4

1 に答える 1

1

これはheight、ヘッダーにプロパティを設定したためです。高さプロパティは、コンテナー (ブロック コンテナー) のサイズを変更しています。

body header {
    -moz-box-sizing: border-box;
    background-color: #F5F3DE;
  > height: 150px; < 
    margin: 0 auto;
    padding: 26px;
    width: 960px;
}

また、他の人に役立つように質問を改善してください。

于 2013-04-30T13:57:50.360 に答える