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

php - Invalid Cofiguration - yii\base\InvalidConfigException - Yii2 -

How to show in django cms breadcrumbs full path? -

ruby on rails - npm error: tunneling socket could not be established, cause=connect ETIMEDOUT -