样式标签中的CSS没有显示在元素中?

时间:2016-03-13 19:16:24

标签: javascript jquery html css

元素的CSS" .title"未显示在tile元素中。我正在使用C9.io网络编辑器进行云端操作。这是结果的链接。 https://camel-Case-Is-Life-dmitrikonnikov.c9users.io/hello-world.html

<head>
<style>
.title{
    font-size:40px;
    text-align:center;

}

</style>
</head>
<script src="jquery-1.12.0.min.js"></script></head><script>
    /*$(document).ready(function() {
    $(".").addClass("animated bounce");
    });*/
    </script>
    <h1 class="title">Welcome</h1>

1 个答案:

答案 0 :(得分:2)

在您提供的链接中,标记为<h1 id="title">Welcome</h1>而不是<h1 class="title">Welcome</h1>,因此.title规则不适用于此。

enter image description here