Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 to see the difference):
http://jsfiddle.net/Cernx/1/

Is there any workaround for this? Or is there anotherway of pushing text out of the textbox?

share|improve this question
How about grabbing the textbox with some scripting and then placing that where you want on the page? – Jason Gennaro Oct 17 '11 at 17:25
@JasonGennaro: It's not about placing the textbox, text-indent is about where text starts inside the textbox. – Valipour Oct 17 '11 at 20:16
Ok. I gotcha. So why do you want to remove the text? – Jason Gennaro Oct 17 '11 at 20:44
In the project this is only sometimes applying to the textbox. (not always) – Valipour Oct 17 '11 at 22:11

2 Answers

up vote 7 down vote accepted
#paaa { text-indent:50px; display: block; line-height: 1; }

Add line-height to make it work in IE. JSFiddle

share|improve this answer
Coool!! Funny IE ;) – Valipour Oct 21 '11 at 8:09

padding-left should have the same effect, but you may have to adjust the width to suit.

share|improve this answer
padding is ALWAYS added to the width, how can you push the text totally out of the box with this? – Valipour Oct 17 '11 at 17:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.