1

右側の div クラスの円のレンダリングにはページがありましたが、margin:0 auto; も追加されています。何も機能せず、そこにとどまるだけです。

これが私のhtml/phpです

<?php
/*
Template Name: Home Page
*/
?>

<?php get_header(); ?>

<div id="content">

    <header>
        <h1><span class="tech">TECH</span><span class="basics">BASICS</span></h1>
        <h2>Personal Tech Specialists</h2>
    </header>

    <div class="circle"></div>

</div> <!-- end #content -->

<?php get_footer(); ?>

ここに私のcssがあります

html {
    font-size: 16px;
}

body {
    background: #BAE4FF;
    font-family: "Open Sans", sans-serif;
}

nav {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    text-align: center;
    font-weight: 400;
}

nav .menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

nav .menu li {
    padding: 3px 0 3px 0;
    display: none;
}

nav .menu li a {
    text-decoration: none;
    color: #fff;
    font-size: 2.1em;
}

nav .menu .blog {
    background: #1669B5;
}

nav .menu .contact {
    background: #3892E3;
}

nav #touchNav {
    background: #48B4EF;
    width: 100%;
    display: block;
    color: #fff;
    font-size: 2.1em;
    padding: 3px 0 3px 0;
    text-decoration: none;
}

header {
    margin: 50px 0 0 0;
    margin-top: 50px;
    text-align: center;
    width: 100%;
}

header h1 {
    margin: 0 auto;
    width: 100%;
}

header h1 .tech {
    color: #fff;
    font-weight: 500;
    margin-right: 3.5px;
    font-size: 1.1em;
}

header h1 .basics {
    color: #48B5EF;
    margin-left: 3.5px;
    font-size: 1.3em;
}

header h2 {
    font-size: 2.1em;
    font-weight: 100;
    width: 100%;
    margin: 0 auto;
    color: #fff;
    line-height: 1.2em;
}

.circle {
    margin-top: 100px;
    clear: both;
    width: 20px;
    height: 20px;
    background: #48B5EF;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    margin: 0 auto;
}
4

3 に答える 3

2

あなたのサークルクラスのマージンは面白いです。

代わりにこれを試してください:

.circle {
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  clear: both;
  width: 20px;
  height: 20px;
  background: #48B5EF;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

http://jsfiddle.net/q5w3G/1/

これも機能すると考える必要がありますが、最初のものをもう1つ信頼してください。

.circle {
  margin: 0 auto;
  margin-top: 100px;
  clear: both;
  width: 20px;
  height: 20px;
  background: #48B5EF;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

http://jsfiddle.net/q5w3G/2/

CSSはカスケードスタイルシートを意味します。カスケードとは、1つのプロパティが同じ要素に対して2回以上定義されている場合、最後に読み取られたプロパティが適用されることを意味します。したがって、円にマージンを定義し、次に同じスタイルシートで後者を定義し、次に2番目のスタイルシートで最初のセクションの後にrelリンクを付け、次にheadセクション自体でスタイルのrelリンクの後に定義します。タグを付けてから、要素自体を再びインライン化すると、インライン値が使用されます。実際、それが使用される順序です。

于 2013-02-11T07:31:06.513 に答える
2

位置タグを追加してみてください.あなたのニーズに合った位置または相対として固定を使用できます..circleクラスに。

于 2013-02-11T07:04:57.977 に答える
0

cssについて尋ねるときにページの例を持っているとベターになりますが、
これがcssのマージントップでの実際の問題であり、
期待どおりに機能しません。
すべての要素が同じ親 z-index にない限り (または、単純に、すべての要素が 1 つの親を持っていることを意味します)、つまり、すべてがlia 内にある場合を除き、要素の上にスペースを作成しませんul。上余白はとの間ではなく の間の
スペースに影響します。そのためには、 a を与える必要があります。それが役に立てば幸いliliul
ulpadding-top

于 2013-02-11T07:01:53.660 に答える