我有以下css代码:
#content{
position: fixed;
bottom: 21px;
text-align: right;
}
#content h1{
font-size: 1.5vw;
text-align: right;
}
和html:
<html>
<head>
</head>
<body>
<div id="content">
<h1>content</h1>
</div>
</body>
</html>
这里jsfiddle。我不能让文字显示在右侧,它只在左侧显示......我该如何解决?感谢。