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

Apologies for the strange diction in the title.

I'm having a problem with a site I'm designing. I'm using WordPress, but I don't think that's the issue.

The problem is, I have a "Module" class which is supposed to wrap to its contents. Instead of wrapping, however, it by default stretches to 100% of its parent's width. When I manually enter the appropriate width, the right margin still stretches to the right side edge of its container. When I manually resize the margin, nothing changes.

Here's the module class, just because:

.module
{
margin:0px;
padding:5px;
background:#356;
border:#38a solid 1px;
}

It's simple enough. However, I want it to be wrapped to its contents. Instead, it's automatically sizing itself to stretch to 100% of its parent.

I've scoured my both my stylesheet AND Chrome's element inspector, and cannot for the life of me figure out what's going on.

share|improve this question
What is the tag that .module is attached to? – Musa May 25 '12 at 1:57
Look at the differences between block level and inline elements: webdesign.about.com/od/htmltags/qt/block_vs_inline_elements.htm – scrappedcola May 25 '12 at 2:02

1 Answer

You're probably adding that class to a block-level element such as a div or a paragraph. Block-level elements have display: block by default, therefore they stretch to the width or their parent.

You can use display: inline-block; to change that behavior:

.module {
    display: inline-block;
    margin: 0;
    padding: 5px;
    background: #356;
    border: 1px solid #38a;
}
share|improve this answer

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.