Tagged Questions
The text-indent tag has no wiki summary.
9
votes
4answers
441 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:
...
6
votes
4answers
105 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
113 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
178 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 ...
4
votes
2answers
220 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.
...
}
{
...
3
votes
1answer
101 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
214 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
311 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 ...
2
votes
1answer
47 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 ...
1
vote
2answers
101 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
59 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
233 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
6answers
111 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 {
...
0
votes
1answer
618 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
132 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
433 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
1answer
403 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
123 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 ...
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
154 views
Indenting in Codegear
Is there a way to indent/tab multiple lines in one action in the Codegear RAD Studio IDE?
I.e. I would like to be able to highlight multiple lines and indent them all by one tab simultaneously.
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
817 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, ...