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
Post a Comment