我的简单CSS出了什么问题

时间:2013-03-06 23:20:39

标签: css

我在html的开头添加了以下内容,但它不起作用。这一点应该是显而易见的,将顶部和底部边距设置为25px,将左右边距设置为75px。并且还缩进段落。但没有任何作用,无论我做什么,它甚至看起来都没有尝试运行代码。

<style>
  <!--
    p {text-indent:10px;}
    margin:25px 75px;
  -->
</style>

2 个答案:

答案 0 :(得分:3)

<style>

    p {
        text-indent:10px;
        margin:25px 75px;
    }

</style>

然后确保HTML中有<p>标记以将其应用于。

我会专注于完成一些基本的HTML / CSS教程,然后再继续推进:)

答案 1 :(得分:1)

<style>应位于<head>内,它应如下所示:

<head>
  <style>
    p {
      text-indent: 10px;
      margin: 25px 75px;
    }
  </style>
</head>