EN
HTML - empty transparent one pixel gif image as Base64 Data URL (1x1 px image)
7 points
In this short article you will find 1x1 px transparent GIF image that you can use as background.
Quick solution (base64 encoded data URL):
xxxxxxxxxx
1
data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==
Motication: in some web browsers transparent image is useful when we want to make element transparent.
xxxxxxxxxx
1
2
<html>
3
<body>
4
<style>
5
6
img {
7
border: 1px solid silver;
8
width: 100px;
9
height: 100px;
10
}
11
12
</style>
13
<img src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==" />
14
</body>
15
</html>