2

Webデザインはかなり新しいので、基本を確実に理解するために、ヘッダー、段落、スティッキーフッターを備えたWebサイトの基本的なモックアップを作成することをお勧めします:)

.paragraph div を水平方向だけでなく垂直方向にも中央に配置する方法と、コードに明らかな問題や非効率性があるかどうかを知りたいと思っています。悪い習慣を身につけずに基本的なレイアウトをコーディングできるようにしたいだけです。

だから私はこのCSSで終わった:

.head {
margin: auto;
height: 100%;
width: 100%;
background-color: #000;
color:white;
text-align:center;}

body {
    background-color:#99C;
}


.h1 {
    font-size:50px;
    font-family:Georgia, "Times New Roman", Times, serif;
    padding:30px;
}



.paragraph {
    color:#FFF;
    text-align:center;
    background-color:#333;
    width:35%;
    margin:auto;
    margin-top:165px;
    padding:10px;

}



* {
  margin: 0;
}


html, body {
  height: 100%;
}


.wrapper {
  min-height: 100%;
  /* equal to footer height */
  margin-bottom: -70px; 
}


.wrapper:after {
  content: "";
  display: block;
}


.site-footer, .wrapper:after {
  /* .push must be the same height as footer */
  height: 70px; 
}


.site-footer {
  background: orange;
  text-align:center;
  font-family:Arial, Helvetica, sans-serif;
  font-size:40px;
  line-height:70px;

}

そして、これがどのように見えるかです:

ここに画像の説明を入力

前もって感謝します!!!

アダム・H

4

1 に答える 1

0

何らかの理由でヘッダー/フッターの高さを変更する必要がある場合はどうですか? レイアウトを希望どおりに保つには、CSS で複数のルールを変更する必要があります。

これは、純粋な CSS を使用して、高さを固定せずに希望する同じレイアウトです。 Working Fiddle

HTML:

<div class="Container">
    <div class="Header">
        <p>I'm in the header</p>
        <p>my height is not fixed</p>
    </div>
    <div class="HeightTaker">
        <div class="Wrapper Container Inverse">
            <div>
                <div class="Footer">
                    <p>I'm in the footer</p>
                    <p>my height is not fixed</p>
                </div>
            </div>
            <div class="HeightTaker">
                <div class="Wrapper">
                    <div class="Content">
                        <div>
                            <p>I'm in the content</p>
                            <p>I always span the rest of the page.</p>
                            <p>If my content is bigger than my available space, I will scroll</p>
                            <p>This Layout has been tested on: IE10, FireFox, Chrome, Safari, Opera using Pure CSS only</p>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>

CSS:

*
{
    margin: 0;
    padding: 0;
}
html, body, .Container
{
    height: 100%;
}
    .Container:before
    {
        content: '';
        height: 100%;
        float: left;
    }
.HeightTaker
{
    position: relative;
    z-index: 1;
}
    .HeightTaker:after
    {
        content: '';
        clear: both;
        display: block;
    }
.Wrapper
{
    position: absolute;
    width: 100%;
    height: 100%;
}
.Inverse, .Inverse > *
{
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotate(180deg);
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
}

.Header
{
    /*for demonstration only*/
    background-color: #bf5b5b;
}
.Content
{
    height: 100%;
    overflow: auto;
    text-align: center;
    font-size: 0;
    /*for demonstration only*/
    background-color: #90adc1;
}
    .Content:after
    {    
        content: '';
        display: inline-block;
        height: 100%;
        vertical-align: middle;
    }
    .Content > div
    {
        font-size: medium;
        display: inline-block;
        vertical-align: middle;
    }

.Footer
{
    /*for demonstration only*/
    background-color: #b5a8b7;
}

注意: 私のアプローチの唯一の欠点は、(HTML 内の) コンテンツの前にフッターを作成する必要があることです。

于 2013-09-28T23:17:37.373 に答える