如何为此代码添加 css 规则?
问题是我不知道如何对“搜索 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的边距在搜索框和文本之间...
我该怎么做?先感谢您。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以在表单上应用
20px
上边距吗?Could you apply a
20px
top margin to the form?在
li.search-goog
元素的下一个表单上应用 20px margin 规则:Apply the 20px margin rule on the very next form of the
li.search-goog
element(s) :这个怎么样:
How's this:
这应该允许您设置文本样式。然后,您可以开始从左到右删除声明,直到它停止工作......您可能只需要......
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....