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

I have this markup

<html>
... some HTML ...

And I need to wrap it with an element like this:

<html>
<div class="user-content">
   ... some HTML ...
</div>

The problem, is ... some HTML ... can be lots of different things from raw text to complicated markup.

<div>

If I use a <div>, then it adds a block-level break. Meaning if I had

Paul is cool

now I have

<div class="user-content">
   Paul is cool
</div>

which forces a line break.

<span>

If I use a <span> then weird things start happening when I have a <span> contain a <div>. For example, the width of the span is shown as 0px which makes javascript not too happy with that node.

Is there a better tag I can use?

Some context

It's a long story. I need the node to exist in the HTML since I'm running untrusted javascript and I don't want the javascript to be able to walk inside that node. To do that, we've sandboxed all the DOM functions, and at each DOM call, we'll check if we're operating on a "user-content" node and not allow access if we are walking there or to any of its children.

share|improve this question

4 Answers

If your only problem with using a div is the line break when why not just give it the style: display: inline;?

If you can be more specific about your problem... Why do you have to wrap it?

Basically, div is what you want, just style it appropriately.

share|improve this answer
Perfect answer. To expand upon this just a little bit, you could also use other block level tags, just so long as you make sure to set a CSS rule of display: inline. So, if for example the header, footer, article, or section tags feel more semantically appropriate than div, feel free to use those. – Moses Sep 8 '10 at 22:03
1  
so adding display:inline doesn't actually make it an inline element? (meaning it can still have block children)? Are there other CSS attributes I should use? I want it to render as if it doesn't really exist in the DOM. – Paul Tarjan Sep 8 '10 at 22:16
Well, Paul, I believe the rule is that inline elements can't have block level children -- they can of course have children. – rfunduk Sep 8 '10 at 22:20
As for rendering as if it wasn't in the DOM at all... Well, the only way to do that is to not have it in the DOM at all! Again, can you be more specific about what you need and why? Perhaps there's another way to do what you need... Jumping to conclusions often leads to pain (here yours is "I need to wrap this in an element"). – rfunduk Sep 8 '10 at 22:21
Lastly remember that you don't have to make the div inline! If what you need is to avoid the line-break caused by the block level element, then perhaps float or an absolute position would work...? I promise this is the last time I'll say it: if you give more information, that would be helpful in giving you the best solution :) – rfunduk Sep 8 '10 at 22:24
show 3 more comments

You said you have a span which contains a div. Block elements should not be contained within inline elements. You could, however, use the span element within a div.

share|improve this answer

<span> is the closest thing to such element, and the weird behavior you mentioned is normal, <span> is an inline element, while <div> is a block element. You can't put block elements inside inline ones. (display type (inline/block) is the only difference between a span and a div I guess)

share|improve this answer
up vote 0 down vote accepted

I ended up having to parse the contents to decide to use a <span> or a <div>. It isn't perfect, but it works.

Here is my list of inline elements incase it helps anyone

    if (starts_with($html, '<') &&
        !starts_with($html, '<a ') &&
        !starts_with($html, '<input ') &&
        !starts_with($html, '<iframe ') &&
        !starts_with($html, '<img ') &&
        !starts_with($html, '<span ') &&
        !starts_with($html, '<script ') &&
        !starts_with($html, '<input>') &&
        !starts_with($html, '<span>') &&
        !starts_with($html, '<script>')) {
share|improve this answer
In case it's of any use, here is an almost official full list of which elements are block elements in HTML 4 - so you don't have to guess and find out later that you missed a couple. – hippietrail Aug 24 '12 at 15:51

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.