0

I have some <span>s inside a <div> which is positioned absolute.

<div class="post">
<div class="post-main">
    <h3>Title</h3>
    <div class='post-meta'>
        <div> <!-- These 2 spans are supposed to be displayed in ONE line -->
            <span class='post-meta-key'>Field#1</span>
            <span class='post-meta-value'>5-3</span>
            </div>
        <div>...
.post {position:relative;}
.post-main {position: absolute; left:80%; top:80%;}

This should work as I want but the spans are collapsing into new lines. Why? What would be a fix?

4

1 回答 1

0

利用:

span {
display:inline-block;
}
于 2013-11-10T19:44:00.800 回答