简单的文本对齐中心不工作

时间:2015-09-02 14:29:48

标签: css html5 text alignment

为什么这个简单的事情对我不起作用?其他一切工作

<style>

 #the_footer{

    text-align:right;

}

</style>

<body>

<footer id"the_footer">

Made by engineer

</footer>

</body>

2 个答案:

答案 0 :(得分:1)

代码对我来说很好。放id= "the_footer"

答案 1 :(得分:0)

试试这个

.footer {
  text-align: right;
}
<body class='Footer'>
  <footer>Made By Engineer</footer>
</body>