我有一个Jade文件,如果用户尝试使用不正确的凭据登录,则会在pageload上显示错误消息。问题是错误消息会在页面出现时向下移动其他所有内容,因为它基本上只是一段文本。
extends layout
block head
title Login
block content
p
if (errMessage)
p= errMessage
br
| Some other text and login boxes here
如何更改消息文本,使其基本上浮动在其他所有内容上并且不会影响后面的内容?
答案 0 :(得分:2)
为错误消息position:absolute;