0
votes
How can I send html mails with included CSS with PHPmailer?
How is your stylesheet referenced?
For email you will either have to provide an absolute path to your stylesheet or include the styles in the head of the template
…
0
votes
styling the last td in a table with css
you could use the last-child psuedo class
table tr td:last-child {
border: none;
}
This will style the last row only. It's not fully supported yet so it may be …
15
votes
Web security, are there issues with hidden fields (no sensitive data)?
A hacker can access hidden fields just as easily as querystring values by using an intercepting proxy (or any number of tools).
I dont think there is anything wrong with using hidden fields …
0
votes
HTML Tool to determine where style is coming from
The web developer toolbar for Firefox has CSS and element inspectors which I find very useful.
You can also mo …
9
votes
Is there a way to password protect HTML pages without using a server side language?
There is no way to create a secure clientside script. If the user has access to it, it's insecure.
If your host is running apache you can secure folders using .htaccess, on IIS you can do t …
4
votes
Why is element <u> considered outdated according to VS2008?
The tag is deprecated along with other text formatting / style elements.
The 'in' thing to do is to use correct markup and apply styling with stylesheets.
…
