html - VBA not using all CSS styles -


using excel, want generate e-mails , send them outlook. works fine, except adding styles html body. css used , not. example, background color , margin used, padding, image sizes, border radius, font family not used. i've tried linking stylesheet , directly putting html file, both give same result. can tell me i'm doing wrong? css-code:

<style type="text/css">   * {     font-family: "arial";   }    img {     height: 75px;     width: 75px;   }    body {     background-color: #3276b0;   }    .container {     margin: 20px;     background-color: white;     padding: 30px;     border-radius: 20px;   } </style> 


Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -