css property that specifies how much horizontal space should be left before the beginning of the first line of the text content of an element

learn more… | top users | synonyms

0
votes
3answers
29 views

CSS indent first line of text past the right edge

It is possible to use text-indent property to indent the first line of text towards either side of left corner. Consider this example: h1 { text-indent: -200px; margin-left: 200px; } ...
1
vote
2answers
20 views

Don't indent in p tag when there is a img tag in it

Here is my html architecture:(I can not change the architecture because it is generated by Markdown. <p><img src="foo.png" /></p> I have set text-indent in my css file: p { ...
-2
votes
0answers
21 views

What is most SEO friendly for hiding social link text? [closed]

I work for an eCommerce company and we want to make sure that going forward we are being SEO friendly when it comes to hiding social link text. I have made a Codepen example to help explain: ...
3
votes
3answers
184 views

How to conditionally negate the text-indent on a paragraph tag

I have a .content CSS class which indents 55px. In some cases, I want to include a Link at the beginning of the paragraph, but this Link I do not want to indent. Other than creating a new .content2 ...
3
votes
2answers
76 views

Why does this technique commonly use negative text-indent?

Let's say you want to replace an anchor with an image, and you make that image the anchor's background. You still want the text wrapped by the anchor to be there for accessibility reasons, but you ...
1
vote
2answers
101 views

Will using CSS to hide in-line text for screen-readers affect SEO?

There's one practice I really enjoy because it's great for accessibility and for people who use screen reader, but I was wondering if Google could consider this ''an attempt to fool him'' and ...
1
vote
1answer
496 views

Padding for background color of an inline text WITH text-indent

I am basically trying to do THIS with a paragraph that contains text-indent, but can't get it because the display:inline won't allow text-indent. Any ideas?
-4
votes
1answer
51 views

Text indent for all paragraphs for inline element [closed]

Well im looking for a solution to my problem, i need to indent all paragraphs for menu element. It must be inline coz of a black background. If i change it to display inlline-block the background will ...
0
votes
0answers
81 views

Negative text-indent

So I have the following image replacement text: <h1>Look at me, I am text.</h1> That has the following CSS: .parent-dev h1{ text-indent:-999999em; ...
3
votes
3answers
439 views

text-indent minimum negative value

What is the minimum allowed negative value for the text-indent property? I was using a bizarrely huge value in my site (something like text-indent: -99999999px), and it stopped working with the last ...
1
vote
2answers
1k views

CSS text-indent on input field doesn't update the caret position until you start typing

When I use text-ident property in CSS, what I expect to see is when you focus into the text input area, the text cursor icon/caret will appear indented. But it appears as if it isn't indented until ...
0
votes
1answer
98 views

How does exactlly line-height work in this case

In this question positioning text of anchor within a div and given the same code which I repeat here: HTML Markup <div id="header"> <a href="cattle.html" class="current">Cattle ...
0
votes
3answers
930 views

Indent line after each <br /> in HTML

I try to turn a PDF book into a mobi book (html), and I also want to recreate the layout. There, after every break the text is intended one line. This should be doable with <body ...
0
votes
1answer
125 views

Text-indent set with javascript has double value in firefox

I have some javascript that calculates a value and applies it as a text-indent to a select list. This works fine cross browser and device except on firefox (im using the latest version). With firebug ...
1
vote
1answer
401 views

CSS text-indent combined with white-space

I have the following style already: white-space: pre-wrap; This allows newlines to be treated as newlines (and spaces don't get collapsed) for the element. Now I want to apply text-indent: -40px; ...
0
votes
1answer
176 views

text-indent deformating img in html

I have a rule to my blog posts that is: p + p { text-indent: 1.5em; } defined in a div: .entry-content{ padding: 2em 3em 4em; } and I have some pictures inside the <p> defined like ...
95
votes
3answers
42k views

Indenting code in Sublime text 2?

In Visual Studio I can press Ctrl+K+D to indent everything so the code is structured nicely and readable. Is there a shortcut in Sublime 2 to do the same?
2
votes
2answers
474 views

How to indent text exactly one character width

The precondition is that I use monospace as my font-family, but it doesn't seem to work properly, I've tried some solution but neight of them work, my HTML structure is as below: <!DOCTYPE ...
0
votes
1answer
676 views

applying text-indent for multi-line text. JQuery

Text-indent for a multiline text doesn't seem to be working. As shown in the below picture text-indent dosen't seem to apply for the word years:**(Circled in red*)*. Please advice. var indent = ...
2
votes
4answers
5k views

Indent JavaScript Code written in on line in notepad++ or else

I have a javascript code that is written in on line (no carriage return), it's completely unreadable... With notepad++, I tried to replace those characters( "{", "}", ";" ) by themselves + a carriage ...
2
votes
1answer
963 views

Android Indent and Hanging Indent

I am interested in having a series of TextViews, ultimately with a hanging indent. The standard way of doing this via CSS is to set the margin to X pixels and then set the text indent to -X pixels. ...
12
votes
5answers
2k 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 ...
0
votes
1answer
318 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 ...
1
vote
1answer
376 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 ...
2
votes
1answer
180 views

need JTextArea (or similar) with indented first line

How can I extend JTextArea to indent the first line? I would like to display some non-editable things in the upperleft corner area of the text area (e.g. some icons). These items would be the height ...
3
votes
1answer
964 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"> ...
1
vote
2answers
2k 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 ...
4
votes
1answer
799 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 ...
0
votes
2answers
2k 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 ...
5
votes
1answer
1k 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 ...
1
vote
2answers
624 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
5answers
781 views

echo a complex array and indent subarrays

I have a complex array, something like that: Array { k1 => text1 k2 => Array { k3 =>text2 k4 => Array { ...
4
votes
3answers
1k 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 ...
1
vote
1answer
3k 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 ...
1
vote
2answers
2k 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 ...
9
votes
5answers
7k views

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?
1
vote
4answers
1k 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 ...
5
votes
2answers
386 views

Coloring/indenting a script within script in Emacs

I often have shell scripts that call other scripting languages, like so: #!/bin/bash cat somefile|awk ' BEGIN { #This line is not auto-indented and is colored as a string constant. ... } { ...
12
votes
4answers
1k views

How do I indent a single line multiple times in vi or vim?

I've found several answers on how to indent multiple lines in vim, I want to know how to take a single line and indent it more than once. In effect, I want a shorter version of the following command: ...
1
vote
2answers
1k views

Indenting all lines inside textarea

Is it possible to text indent each line in a textarea? I'm using a handwritten font and the first letter on each line is getting cut off slightly. I've already used padding and margin, but this does ...
0
votes
1answer
333 views

Backspace, if chars from cursor to begin of line are tabs/spaces, go back one indent level

I'm using Vim for Python development. Sometimes, after an expression in an if clause: (suppose | is cursor). if test: pass | ...I press enter, and want to go to the if identation level. I ...
20
votes
14answers
14k views

Text indent is not working in ie7

I am working on a website and on the top navigation bar there is a search box, I applied the following css on the search submit button #submit{background:url("img/new-search-icon.png") no-repeat ...
6
votes
3answers
7k 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 ...
4
votes
7answers
10k 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
3answers
137 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
1k 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, ...