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

尝试添加位置标签..你可以使用fixed作为位置或相对任何适合你的需要..到.circle类。

于 2013-02-11T07:04:57.977 回答
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/

人们应该认为这也可以,但更相信第一个:

.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 表示层叠样式表。级联意味着如果一个属性为同一个元素定义了两次或多次,则应用最后读取的属性。因此,如果您在 circle 上定义边距,然后在同一个样式表中再次定义后者,然后在第二个样式表中再次定义其 rel 链接,其 rel 链接位于 head 部分中的第一个之后,然后在 rel 样式表中的 rel 链接之后的 head 部分本身标记,然后再次内联元素本身,然后使用内联值。事实上,这就是它们的使用顺序。

于 2013-02-11T07:31:06.513 回答
0

当您询问 css 时,如果有一个页面示例会更好,
但对于您来说,真正的问题是
css margin top 不能按您的预期工作。
它不会在元素顶部留出空间,除非所有元素都在同一个父 z-index 中(或者更简单,我的意思是它们都有一个父元素),即所有元素都li在 aul中。
上边距影响li's not betweenli和之间的空间ul
为了做到这一点,你应该给ula padding-top。希望能帮助到你

于 2013-02-11T07:01:53.660 回答