I need to remove the
after the value of given spans.
The HTML looks like this:
<span class="number">0.15 </span>
The is coming from the server (CMS).
Is there any way to remove the by using CSS rules?
I need to remove the
after the value of given spans.
The HTML looks like this:
<span class="number">0.15 </span>
The is coming from the server (CMS).
Is there any way to remove the by using CSS rules?
you can use javascript/Jquery framework to remove any charackey like this exampe Here
You cannot possibly remove characters from document content with CSS. That’s not what CSS is for. You can add characters to be rendered, with generated content, but not remove.
However, you might be able to undo the effects of a character on rendering. Consider the following example:
The no-break space (
) has two effects: it causes visible spacing, the same as a normal space character, and it prevents line break between “0.15” and “foo” when the browser formats the text. To prevent the latter effect, you could add a normal space using generated content, but then there will be too much spacing when a line break does not appear. To fix this, set the width of the pseudo-element to zero:To remove the spacing effect of the no-break space, you can set a negative right margin. The main problem with this is that the width of a no-break space (and a space) depends on the font. It is on the average about one fourth of an
em
, but it may vary considerably. If you can regard the font as fixed (e.g., you are using@font-face
), you can use the following code, with just the numeric value tuned as needed:As a side effect, this may also allow a line break between “0.15” and “foo”, since browsers may handle inline blocks in formatting so that they always allow line breaks before and after.
You can't do this with only css. Somehow you have to use jquery for this. With Regular Expression you can simply do this.
DEMO
Note:
is coming from CMS them you have to use jquery code to replace it when your document loaded fully.If this value is provided by your CMS, it's posible you can modify the value with php via
str_replace(' ', '', $yourVar)
before echo it in your span.If you can't access with this, you can also use jQuery to do this... Just like Muhammad Ali said :
Something like this could work. But with CSS, isn't posible i guess.