The Best Way To Place 2, 3, or 4 Div Side By Side

One day i was making a simple page for my website project and found a little problem (That time i was new born child to eat the food ). I was trying to manage three DIVs side by side. But as i was new in this field so unable to do this task. Then i…
Continue Reading …

Learn how to flip an image using css

With these small codes you can flip an image using css, this magic is done by using CSS , mostly all browsers are supported. Complete codes – <head><style> img { -moz-transform: scaleX(-1); -o-transform: scaleX(-1); -webkit-transform: scaleX(-1); transform: scaleX(-1); filter: FlipH; -ms-filter: “FlipH”; } </style></head> <body> <img src=”image.jpg” height=”100″ width=”100″> </body>