在我的项目中,我需要纠正一些大文本,所以在我的 css 文件中我写道:
#wrong_answer
{
color: red;
font-size: 30;
font-weight: bold;
}
在我的 js 文件中:
function wrong_answer()
{
$("body").append("<p id='wrong_answer'>Is not correct</p>");
};
最后我得到了红色文本,但非常小,如果我改变字体大小,文本的大小不会改变。
所以问题是为什么我不能改变字体大小?