如何为此代码添加 css 规则?

发布于 2024-12-21 05:06:11 字数 1012 浏览 0 评论 0 原文

问题是我不知道如何对“搜索 example.com”文本应用 css 规则,更准确地说,我不知道该怎么做,因为文本在标签之间没有关闭。

此代码由 javascript (support.google.com

这是代码:

<div id="goog-wm">
  <div class="content">
    <h3 class="other-things"><b>Other things to try:</b></h3>
    <ul>
      <li class="search-goog"><script type="text/javascript"> a code here... </script> Search <b>example.com</b>:
        <form method="get" onsubmit="return ss(this)">
          <input type="text" value="blablabla" id="goog-wm-qt" name="q" size="40">
          <input type="submit" id="goog-wm-sb" value="Google Search">
        </form>
      </li>
    </ul>
  </div>
</div>

我想要做的是应用20px的边距在搜索框和文本之间...

我该怎么做?先感谢您。

The problem is i don't know how to apply a css rule for 'Search example.com' text, more accurately i don't know what to do because the text is not closed between tags.

This code is generated by javascript (support.google.com)

This is the code:

<div id="goog-wm">
  <div class="content">
    <h3 class="other-things"><b>Other things to try:</b></h3>
    <ul>
      <li class="search-goog"><script type="text/javascript"> a code here... </script> Search <b>example.com</b>:
        <form method="get" onsubmit="return ss(this)">
          <input type="text" value="blablabla" id="goog-wm-qt" name="q" size="40">
          <input type="submit" id="goog-wm-sb" value="Google Search">
        </form>
      </li>
    </ul>
  </div>
</div>

this how it looks

What i want to do is to apply a 20px margin between the search box and the text...

How can i do this? Thank you in advance.

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

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

发布评论

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

评论(4

绳情 2024-12-28 05:06:11

您可以在表单上应用 20px 上边距吗?

.search-goog form { margin-top: 20px; }

Could you apply a 20px top margin to the form?

.search-goog form { margin-top: 20px; }
久光 2024-12-28 05:06:11

li.search-goog 元素的下一个表单上应用 20px margin 规则:

.search-goog > form {
    margin-top:20px;
}

Apply the 20px margin rule on the very next form of the li.search-goog element(s) :

.search-goog > form {
    margin-top:20px;
}
捎一片雪花 2024-12-28 05:06:11

这个怎么样:

li.search-goog form { 
    margin-top: 20px;
}

How's this:

li.search-goog form { 
    margin-top: 20px;
}
平安喜乐 2024-12-28 05:06:11
#goog-wm .content ul li.search-goog {
 /* css here */
}

这应该允许您设置文本样式。然后,您可以开始从左到右删除声明,直到它停止工作......您可能只需要......

li.search-goog {
/* css here */
}
#goog-wm .content ul li.search-goog {
 /* css here */
}

That should allow you to style the text. You can then start removing declarations from left to right until it stops working.... You may only need....

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