There is a way using CSS!
If you set your width depending on the parent container you can set the height to 0 and set padding-bottom to the percentage which will be calculated depending on the current width:
.some_element {
position: relative;
width: 20%;
height: 0;
padding-bottom: 20%;
}
This works well in all major browsers.
JSFiddle: https://jsfiddle.net/ayb9nzj3/
Credit to Kristijan for this answer.
grep -rnw '/path/to/somewhere/' -e 'pattern' -r or -R is recursive, -n is line number, and -w stands for match the…
This snippet will remove duplicate lines from text file: awk '!seen[$0]++' filename It will display…
Easiest way to export your database is through phpMyAdmin. With few clicks you can get…
Put this code into a .sh file, add executable permissions to it and add it…
Put this code into a .sh file, add executable permissions to it and add it…
Facebook has a somehow hidden way for addding applications as page tab. To do that,…