所有的文本都在左边,即使我把位置放到顶部,它仍然停留在底部
而我甚至还没有完成1%,我有数百万的问题。
我把它做成了这样,每次你点击它都应该上升1,但是当你点击的时候它仍然是0。
这是密码。
第一个
screw this css, its top but it shows up at the bottom
所有的文本都在左边,即使我把位置放到顶部,它仍然停留在底部
而我甚至还没有完成1%,我有数百万的问题。
我把它做成了这样,每次你点击它都应该上升1,但是当你点击的时候它仍然是0。
这是密码。
第一个
screw this css, its top but it shows up at the bottom
1条答案
按热度按时间erhoui1w1#
position: top
不是有效的CSS属性。请使用以下命令:
position: absolute; top: 10px; right: 10px
这将把它放在右上角。(https://developer.mozilla.org/en-US/docs/Web/CSS/position)。