Thursday, January 23, 2014
Thursday, January 16, 2014
Wednesday, January 15, 2014
background-position-x and background-position-y aren't cross-browser compatible
Wrong:
.myStyle{
background-image: url(images/someImage.png);
background-repeat:no-repeat;
background-position-x: 20px;
background-position-y: 30px;
}
Right:
.myStyle{
background-image: url(images/properties_underline.png);
background-repeat:no-repeat;
background-position:20px 30px;
}
Saturday, January 11, 2014
CSS properties + Webkit CSS properties
I found this site:
CSS properties: http://css-infos.net/
Webkit CSS properties: http://css-infos.net/properties/webkit
Screen capture from the site |
Subscribe to:
Posts (Atom)
linux bulk prefix filenames
In order to bulk add prefix to filenames in a directory run the following comnmand for f in * ; do mv -- "$f" "2018-05-24_...
-
In order to bulk add prefix to filenames in a directory run the following comnmand for f in * ; do mv -- "$f" "2018-05-24_...
-
After few weeks that I tried to set my guitar amplifier fender mustang 1 v2 to produce "crystal clear" sound + two days of th...
-
Copy & paste (ctrl+shift+V) into your terminal window sudo hd /sys/firmware/acpi/tables/MSDM *Might work on other...