English 中文(简体)
如何从此 html 中删除文本
原标题:How to remove the text from this html
<div class="breadcrumb">
<h2 class="element-invisible">You are here</h2>
<a href="/cashback/">Home</a> 
admin
</div>

有人能建议如何使用 cs 来从以上 html 中删除“ admin ” 吗? 我无法直接修改 html 。

最佳回答

有办法做到这一点 仅与CSS:

.breadcrumb {
    visibility: hidden;
}

.breadcrumb * {
    visibility: visible;
}
问题回答

您可以使用 str_replace( 管理员, $var_ name) ; , 如果您有此 html 变量的话。

您可以使用:

Try using position relative with a negative left position, I don t know if you can apply those styles with no problem in your Drupal site, but at least it works in the fiddle.
http://jsfiddle.net/cadence96/M5pfV/1/

First give a relative position to the container moving it away of the view applying a css style of left: -9999px
then select the children elements, give them position relative, and style them with left: 9999px, this way you ll get your necessary elements back in the view.

PD:我试图用同样的程序来缩进负文本,但我不知道为什么它不起作用。

text-indent:-9999px;
position:relative;

用于 IE7 :

text-transform:uppercase;




相关问题
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....

image changed but appears the same in browser

I m writing a php script to crop an image. The script overwrites the old image with the new one, but when I reload the page (which is supposed to pickup the new image) I still see the old one. ...

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 ...

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签