Logo Design / Picture Validation
Php / ASP.Net / Jquery
I am working on a small blogging website, where i am looking forward to keep a logo.
for Instance : abc"Chillie Image" def.
When y开发者_Go百科ou right click on StackOverflow - It doesnt show the option for saving the image. It shows the option to save as target in .html? I expecting .. similarly
How to store the logo inside HTML Tags rather than storing in image tag
Store it as a background in a <div>
, for example.
<div style="background-color: yellow;
background-image:url('moon.jpg');
width:400px; height: 400px;
background-repeat:no-repeat"> Hello World! </div>
This actually works. You can have the logo as a background.
精彩评论