dreamweaver tables
I built a table but can't seem to get all the cells to the same font size? If i highlite all cells and change properties it doesn't help?
I built a table but can't seem to get all the cells to the same font size? If i highlite all cells and change properties it doesn't help?
Give your table a class like "myTable":
<table class="myTable">
Then use some css to style the <td> cells:
.myTable td {
font-size: 18px;
}
This assumes you know about applying classes to elements and styling them with css, maybe.
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.