CSS alignment on different browsers -


don't use css might simple solution. i'm trying align dynamic date value on jpg certificate in lower righthand corner. aligned on fixed image line. alignment looks great in safari browser, shifts right on chrome , firefox , shifts far left in internet explorer. example fiddle: http://jsfiddle.net/jeffbarclay/evu1y9ao/

.certdate { font-size:14pt; font-family:trebuchet ms; font-weight:normal;  position: absolute;   top: 480px;  left: 780px;    } 

use right , bottom instead of left , top.

.certdate {     font-size: 14pt;     font-family: trebuchet ms;     font-weight: normal;      position: absolute;       bottom: 0;      right: 0;    } 

make sure container has proper height , width , position relative.


Comments

Popular posts from this blog

html - Difficulties with background-image property -

visual studio code - What does the isShellCommand property actually do and how should you use it? -

ios - Segue not passing data between ViewControllers -