2
votes
Is there a way to highlight the target of a bookmark? (www.site.com/page.htm#bookmark) ?
You can also use the target pseudo-class in CSS:
<html>
<head>
<style type="text/css">
div#test:target {
background-color: yellow;
}
</style>
…
0
votes
Should Tables be avoided in HTML at any cost?
@toddhd, advocating the use of tables for layout simply to save time is a cop out. If time is the issue, then you can quickly create a columnar layout without tables using a framework like …
