0
我想將我的文字標籤在自定義位置使用document.style.position
我有這樣的腳本:如何更改項目的位置槽style.position?
var clickHandler = function() {
var doc = document.getElementById("result");
doc.style.visibility = "visible";
doc.style.color = "#ff0000";
doc.style.position = "left:150px";
}
(見於this的位置教程)。我錯在哪裏?
應該'doc.style.left = 「150像素」''position'是「絕對/相對」等 – PSL
CSS位置:https://developer.mozilla.org/en-US/docs/Web/CSS/position – epascarello