MKK
MKK

Reputation: 2753

How can I set this alignment?

"New" & "Here is News". They won't be on the same alignment horizontally. How can I put them in the same line?

Here is demo http://jsfiddle.net/CtCuk/2/

enter image description here

HTML

<div class="top_page">
    <div class='container-general'>
        <div class="annouce-row">    
            <div class='title'>
                New
            </div>
            <div class='annoucement'>
                Here is News
            </div>
        </div>
    </div>
</div>

CSS

.top_page{
    text-align: center;
    width: auto;
    max-width: 900px;
    margin: 50px auto 20px;
}

.annouce-row{
    width: 800px;
}

.title {
    padding: 20px 10px;
    background-color: rgb(123, 0, 218);
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    margin: 1px;
    color: rgb(255, 255, 255);
    font-size: 22px;
    width: 70px;
}

.announcement {
    font-size: 24px;
    font-weight: 200;
    color: rgb(0, 174, 218);
    margin-left: 0px;
    width: 600px;
}

Upvotes: 0

Views: 61

Answers (3)

Ali Bassam
Ali Bassam

Reputation: 9959

.annouce-row
{
     overflow:hidden;
}
.title
{
    float:left;
}
.annoucement
{
    float:left;
    margin-left:10px;
    margin-top:20px; //Change this as much as it suits you
}

There is no div with class .announce, its .annoucement, check this out http://jsfiddle.net/AliBassam/cqh49/

Upvotes: 1

ashley
ashley

Reputation: 2767

.annouce-row div {
    width: 100px;
   display: inline-block;
}

http://jsfiddle.net/CtCuk/6/

Upvotes: 3

Lexsoul
Lexsoul

Reputation: 155

Have you tried to put: float:left; in your css properties? enter image description here

Upvotes: 1

Related Questions