ap标签中包含了验证码控件,如何将其向右移动?

发布于 2024-08-06 14:33:15 字数 162 浏览 2 评论 0原文

将验证码控件包裹在 ap 标签中,如何将其向右移动约 50 px?

编辑 我正在使用 .net 控件来使用 reCaptcha。我的输入元素位于页面右侧约 50 像素处。

我的 repactha 呈现左对齐(一直向左,因此与我的其他输入字段相比,对齐是关闭的)。

wrapped captcha control in a p tag, how to shift it to the right about 50 px?

Edit
I am using reCaptcha using the .net control. My input elements are to the right of the page by about 50 px.

My repactha is rendering left aligned (all the way to the left, so the alignment is off when compared to my other input fields).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

靑春怀旧 2024-08-13 14:33:16

你的问题确实很模糊。我想验证码是使用图像实现的。在这种情况下你可以使用 CSS。

#captcha {
    position:relative;
    left:50px; /* moves the element 50px to the right */
}

Your question is really vague. I suppose the captcha is implemented using an image. In that case you could use CSS.

#captcha {
    position:relative;
    left:50px; /* moves the element 50px to the right */
}
掩耳倾听 2024-08-13 14:33:15
#foo { margin-left: 50px } 

一般问题,一般答案:)

#foo { margin-left: 50px } 

general question, general answer :)

风尘浪孓 2024-08-13 14:33:15

您是否尝试将样式设置为 50 像素填充?

<p style="padding-left: 50px;"> ... </p>

如果这不起作用,您可以随时在控件之前插入一个 50 像素的图像。

Did you try setting the style to a 50 pixel padding?

<p style="padding-left: 50px;"> ... </p>

If that doesn't work, you can always isert a 50 pixel image before the control.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文