Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm relatively new to CSS, and have used it to change the style and formatting of text.

I would now like to use it to insert text as shown below:

<span class="OwnerJoe">reconcile all entries</span>

Which I hope I could get to show as:

Joe's Task: reconcile all entries

That is, simply by virtue of being of class "Owner Joe", I want the text Joe's Task: to be displayed.

I could do it with code like:

<span class="OwnerJoe">Joe's Task:</span> reconcile all entries.

But that seems awfully redundant to both specify the class and the text.

Is it possible to do what I'm looking for?

EDIT One idea is to try to set it up as a ListItem <li> where the "bullet" is the text "Joe's Task". I see examples of how to set various bullet-styles and even images for bullets. Is it possible to use a small block of text for the list-bullet?

share|improve this question
the <li> idea isn't good practice. If you really want to this, look into a templating language instead. – Gary Apr 29 '10 at 23:16
Sounds like using the CSS3 :before or :after pseudo-elements you'll really just be moving the redundancy to CSS land (because you'll need to add a CSS statement for OwnerJoe, OwnerJane, etc.) – Matt Beckman Apr 29 '10 at 23:25
@Matt Beckman: That is fine with me. I can easily define CSS blocks for each of my users. Repeating it over and over in the HTML seems excessive in my case. – abelenky Apr 29 '10 at 23:33

5 Answers

up vote 44 down vote accepted

It is, but requires a CSS2 capable browser (all major browsers, IE8+).

.OwnerJoe:before {
  content: "Joe's Task:";
}

But I would rather recommend using Javascript for this. With jQuery:

$('.OwnerJoe').each(function() {
  $(this).before($('<span>').text("Joe's Task: "));
});
share|improve this answer
3  
This will work on IE8+ provided a DOCTYPE is given. – dreamlax Apr 29 '10 at 23:15
1  
Should be a space after the colon. – system PAUSE Apr 29 '10 at 23:17
1  
Initial tests indicate the content-property works well. Congrats on finding an answer when everyone else says it can't be done. :) – abelenky Apr 29 '10 at 23:18
1  
To cover older IE, you can conditionally include code.google.com/p/ie7-js which will allow your CSS to remain the same for all browsers. It's an alternative to jQuery that is closer to standards. – system PAUSE Apr 29 '10 at 23:22
This is just amazing. I had no idea. – zekel Mar 29 '11 at 21:22

The answer using jQuery that everyone seems to like has a major flaw, which is it is not scalable (at least as it is written). I think Martin Hansen has the right idea, which is to use HTML5 data-* attributes. And you can even use the apostrophe correctly:

html:
<div class="task" data-task-owner="Joe">mop kitchen</div>
<div class="task" data-task-owner="Charles" data-apos="1">vacuum hallway</div>

css:
div.task:before { content: attr(data-task-owner)"'s task - " ; }
div.task[data-apos]:before { content: attr(data-task-owner)"' task - " ; }

output:

Joe's task - mop kitchen
Charles' task - vacuum hallway

share|improve this answer
An interesting side effect to using css content as opposed to jQuery is that the text supplied by the content attribute is not selectable, which may or may not be desirable.... – Jeff Apr 23 at 4:41

This is more a templating thing than a styling thing.

Templating as in applying a view to a data model.

Checkout mustache.

share|improve this answer

Also check out the attr() function of the CSS content attribute. It outputs a given attribute of the element as a text node. Use it like so:

<div class="Owner Joe" />

div:before {
  content: attr(class);
}

Or even with the new HTML5 custom data attributes:

<div data-employeename="Owner Joe" />

div:before {
  content: attr(data-employeename);
}
share|improve this answer

You can't do that with only CSS. Try some jquery (if you can rely on javascript):

html:

<span class="Owner" id="OwnerJoe">reconcile all entries</span>

javascript:

$('.Owner').each(function(){
    var nm = this.id.replace('Owner','');
    $(this).prepend('<span>'+nm+'\'s Task: </span>');
});
share|improve this answer
5  
The accepted answer shows how this can be done with only css. – Bala Clark Nov 22 '11 at 10:05

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.