Pages

Plot more than one element in a single line

<body>
<div id="wrapper">
<div id="content">
Hello ! My Name Is ?
</div>
<div id="image">
hello ?
</div>
</div>
</body>

#wrapper
{
    display: inline-block;
    width: 800px;;
    height: 400px;;
    border: 2px dashed gray;
   
}
#content
{
   
    width: 300px;
    height: 100px;
    border: 1px solid black;

}
#image
{
    width: 300px;
    height: 100px;
    float: left;

}


No comments:

Post a Comment