English 中文(简体)
负差数的对冲成分
原标题:Hiding elements with negative margin
  • 时间:2011-11-22 17:46:57
  •  标签:
  • css

我已经读过(实际上在SO,但现在不能找到这个职位)以某种方式隐藏有负差的内容。

我回顾,答案载有对为何这样做的深刻解释,以及对其他方法的惠益(<编码>可见性:隐蔽性;立场:绝对性;,<代码> 显示:无)。 是的,该方法提供了一种办法,可以将这一要素从文件流通中删除(可能具有黑白,无效)。

我是否梦想这样做? 如果是,那么,我会想得到很少深入的解释。

提前感谢!

最佳回答

你们是否试图掩盖象四分五裂这样的等级要素,或者仅仅在某种带有背景形象的链接上隐藏。 如果是第二个项目,则由你们重新研究的是案文。 我过去曾这样说:

a.button {
  /* .button is a for instance class name */
  text-indent: -9999px
}

这将留下文件流中块级要素(标签)和你给它带来的任何背景,但会把案文移至屏幕上。 这是我过去使用的一种技术,但需要仔细研究你重新藏匿的搜索引擎,将其作为准黑帽技术。 确实,隐藏的文字不像关键词 st或明显的垃圾邮件,你要被罚款。

希望这一帮助。

问题回答

采用负差通常被视为一种更“可获取”的藏匿要素。 绝对定位OR 浮动将从文件流中移除。

本条概述了几种图像替代技术。

HTH!

你们要么是梦想的,要么是种植货物的受害者。 过度负差的明显不利之处是,你依赖最大的窗口规模。 (Excesive anti text-indent 也有这一问题和其他问题。 规模越大,这个因素就会再次出现。 除此之外,它也没有具体指明与这种规模的负差。

只有<代码>显示:无<>/代码>,你才能可靠地删除某一项内容(如无)。 绝对位置是正常流动的一个因素,与取消这一流动并不相同。





相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

jquery ui dialog opens only once

I have a button that opens a dialog when clicked. The dialog displays a div that was hidden After I close the dialog by clicking the X icon, the dialog can t be opened again.

Drop down background url in Safari Issue

selectBox.selectCSS { background: url(/Images/replacementSelectBackground.png) top left no-repeat height:auto; } I have an issue in Safari only where the image is not rendering on top ...

CSS specific for Safari

How do you target specifically safari in css with styles?

Aligning textarea in a form

Ive used the following css code to align my form elements: form { position:relative; } form input { position:absolute; left:11em; } However, the textarea element is not aligned correctly with the ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

CSS problem with page footer

I have defined my page footer in the css file as: #footer { position: absolute; height: 50px; text-align: center; background: #66CCCC; bottom: 0px; left: 0px; width: 100%; height: ...

热门标签