我創造了我的響應表的表頭的CSS是這樣的:打印出突變元音與CSS
td:nth-of-type(1):before { content: "Abfahrtszeitpunkt"; }
td:nth-of-type(2):before { content: "Startort"; }
td:nth-of-type(3):before { content: "Zielort"; }
td:nth-of-type(4):before { content: "Karte"; }
td:nth-of-type(5):before { content: "Bewertung"; }
td:nth-of-type(6):before { content: "Fahrt löschen"; }
但是,當我在我的網頁瀏覽器加載此表中的「ö」不顯示在得到正確的方法。網站只打印出帶有問號的菱形。我已經嘗試使用html和javascript修復它,但它不起作用。有沒有簡單的方法來解決我的問題?
Unicode編碼問題? – Huey
有沒有什麼理由讓你這樣做,而不是把你的內容放在HTML中,它屬於哪裏? –
是的。我試圖創建一個響應表,其中表頭中的信息(在最小量的px之後)用作表的列,這是它對我來說唯一的方式。 – Encanis