使用 CSS 标记
Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Wordpress,遇到了一个问题,即验证码位于登录按钮下方并且有点看不见。
这是我想使用 css 将底部 p 标签移动到顶部的代码。
<div> <p>login button</p> <p>forget password link</p> <p>register link</p> <p>captcha button<p> </div>
我们可能需要更多有关布局的信息来提供帮助,但假设您根本无法更改 HTML,您可以做的是制作容器<div> position: relative并position: absolute; bottom: 100%在验证码元素上使用以使其显示在顶部。
<div>
position: relative
position: absolute; bottom: 100%
http://jsfiddle.net/L5vER/