+ 1
Friends, I want to write a paragraph in 3/4 of a page. How can I do it. Help me.
And in remaining 1/4 page I want to show some pictures.
1 Antwort
0
.page {
width:100%;
}
.text{
width: 75%;
float: left;
}
.picture{
width: 25%;
float: left;
}
<div class="page">
<div class="text">
Your text to display
</div>
<div class="picture">
<img />
</div>
</div>