+ 15
how to insert image in textbox and can we divide header and footer in 3 parts ?
I want tu divide header in 2 parts 1. Logo of google 2. Google link (open box)
5 Réponses
+ 16
Okay, So you want something like this pattern ?
---------------------------------
| logo | link |
---------------------------------
Then you can make using <div>.
<div class="container">
<div class="logo"> </div>
<div class="link"> </div>
</div>
And CSS styling,
.logo, .link {
float : left;
}
And also add a border to the container so that it would be clearly visible.
Hope This Helps !!!
+ 14
You can insert an image in the text box using inline styling :
<input type="text" style="background-image: url(image_link);">
Can you elaborate that header-footer thing ? I didn't get what you want to say
+ 1
khole thomposn, please stop spamming. If you continue, your account will be banned.
- 2
Hi