我在做一個基於快速的Web應用程序,每次有人訪問這個文件玉我得到以下錯誤:玉 - 文玉文件的行X之前丟失的空間
Warning: missing space before text for line 28 of jade file "C:\x\app\view
s\login.jade"
也吐出它了幾次發生的每一行。
我看了看這些行,我無法弄清楚它在抱怨什麼。
我的玉文件如下:
doctype html
html
head
meta(charset='utf-8')
link(href='style.css', rel='stylesheet')
body
.wrapper
header.header
a(href="/", style="color: #000000;")
h1(style="position: absolute; top: 30px;") Hello
.middle
.container
main.stream
p Login
main.name
form(id="login", method="POST", action="/login")
table(cellspacing="15")
tr
td Email
td
input(type='email', name='email' style="width: 250; height: 18px; border: 1px solid #999999; padding: 5px;")
tr
td Password
td
input(type='password', name='password' style="width: 250; height: 18px; border: 1px solid #999999; padding: 5px;")
tr
td
input(style="width:75px;height:30px;", type="submit", value="Login")
aside.left-sidebar
main.dir
a(href="/") Home
main.dir
a(href="/signup") Register
footer.footer
h3 Hello
p This is a footer
我不認爲這是什麼大不了的事,但是你用逗號隔開沒有逗號的混合在你的元素語法中。 '輸入(類型= '密碼',名字= '密碼' 風格= 「寬度:250;高度:18像素;邊界:1px的固體#999999;填充:5px的;」)' VS '輸入(式=「width:75px; height:30px;」,type =「submit」,value =「Login」)' –
@WaynePincence事實上,我不知道我怎麼沒聽到,謝謝! – novs12