Tagged Questions

6
votes
4answers
106 views

Is text-indent: -9999px a bad technique for replacing text with images, and what are the alternatives?

This article say we should avoid using this technique. This one says it's awesome. Is it true that Google looks inside CSS files for text-indent: -9999px; and punishes you? :| I'm using that property ...
4
votes
1answer
115 views

Why doesn't text-indent work when its container has a :before/:after pseudo-element? (FX/Opera)

Ran into this quirk today. http://jsfiddle.net/UJAjD/3/ You'll notice that in Firefox 7 and Opera, the gray box has the word "Next" in it. The CSS includes a text-indent property that should move ...
4
votes
1answer
184 views

HTML5Boilerplate and the Image Replacement Class text-indent -999em

I have been using HTML5Boilerplate for most of my projects, as it is a great framework but me and the other developer have been going back and forth about the image replacement class and the use of ...
3
votes
1answer
105 views

Width issue with negative text indent in CSS

When I run the code below, I see a blue box on screen. <!DOCTYPE html> <html dir="ltr"> <head> <meta http-equiv="Content-type" content="text/html; charset=utf-8"> ...
3
votes
1answer
218 views

Hiding Text using css: text-indent

I've got a company logo at the top of my site, that links back to the homepage. I'm hiding the link text using text-indent: -9999px; which seems like common practice. To me it feels like a bit of a ...
3
votes
3answers
314 views

CSS - Indenting only the first line of text in a paragraph?

I have several paragraphs that I would like to indent, although only the first lines of these paragraphs. How would I target just the first lines using CSS or HTML? Thanks!
3
votes
3answers
1k views

Text indent after the first line in a paragraph

- A Reuters reporter in Surkhrod district in Nangarhar province, where villagers said the raids took place, said Afghan police fired at the crowd after some of them started throwing stones at local ...
1
vote
2answers
104 views

Text-Indent for a text box in IE

I'm trying to push my text out of the textbox by giving it an extreme text-indent, but apparently text-indent is ignored/interpreted differently in IE. Here is a simulation (try it in Chrome and IE ...
1
vote
2answers
466 views

CSS: horizontal menu using list with background images?

I’m trying to create a simple menu where I’ve got four menu items each have an image and then there is a special image for each item that is active. I’m using Drupal so the HTML output can’t be ...
1
vote
5answers
1k views

hiding text using “text-indent”

I'm trying to hide some text inside an <li> element using CSS by setting text-indent: -999px;. For some reason this doesn't work when I set the direction of the document to "rtl" (right to left ...
0
votes
1answer
60 views

Text indent defines different div size in chrome and firefox

I have this small piece here - the text has text-indent So it will not be seen and then only thing that should be seen is the span with the image (size 24*27). Firefox sees the <a> in the size ...
0
votes
1answer
64 views

Nested divs with text indentation issue in Chrome/IE

I am having problems with nested divs in Chrome and IE, whereas in Firefox it works fine. I have two style attribute (text-indent and margin-top) set in the outer div. The "display" style of inner ...
0
votes
1answer
244 views

Is this a text-indent bug in Chrome and IE, or I am missing something?

http://jsfiddle.net/CtaBe/ I've tested this in FF, Chrome and IE. Only FF shows the intended behavior (or at least what I think is the intended behavior). Chrome and IE show the same behavior: when ...
0
votes
2answers
138 views

does text-indent also indents <img>?

i'm trying to use CSS to replace the image in html, so <img class="flechaTooltip" src="oldpath" /> turns into .flechaTooltip { width: 0; height: 0; padding: 11px 209px 0 0; /* ...
0
votes
1answer
628 views

CSS text indent not working on IE7

Here is the sample page: http://jsfiddle.net/p9Fbb/ Basically, when using text-indent on the icon, Internet Explorer 7 (IE9 in Compatibility Mode) moves the element off-screen, not just the text. For ...
0
votes
1answer
137 views

Firefox adds one Pixel to the left in <input type=“text”>

I want to draw an input field without borders and it should look like a normal text. So i tried this here: <html> <head> <style> /* both elements ...
0
votes
3answers
439 views

Do search engines treat text-indent:-9999em or negative margin as SEO cheat?

I want to use a technique like text-indent:-9999em or negative margin to replace my text with more pretty pictures, but I wonder if search engines would treat this as kinds of cheating? I think for ...
0
votes
3answers
114 views

First line text-indent in sIFR

I have a text block made whith sIFR and I want to indent the first line. Look at this image to see what I want: http://alltutorials.hi2.ro/testimonial.jpg I want the word WOW to be after the ...
0
votes
1answer
1k views

IE6/7 link overlapping + text-indent

I need a little guidance here... I have 2 links: <div class="tarjBodyHolder"> <div class="imageHolder"> <a href="#" onclick="alert('picture link'); return false;"> ...
0
votes
1answer
821 views

Image Navigation Using text-indent

I'm trying to create a simple image navigation for my site, using CSS to declare the background-image property of a list-item (li). The problem is, when I use text-indent to put the image off-screen, ...