Skip to content Skip to sidebar Skip to footer

A Tag Inside Another Tag Html

.button1{ background: #E68A00 url(wooden.jpg) repeat-x; border: 2px solid #eee; height: 28px; width: 115px; margin: 50px 0 0 50px; padding: 0 0 0 7px; overflow: hid

Solution 1:

Rather than invent new tags, just use multiple classes. In this case, depending on what you're actually trying to do, you can do this:

<a class="button1 pg" href="...">Small $14</a>

Or this:

<divclass="pg"><aclass="button1"href="...">Small $14</a></div>

Post a Comment for "A Tag Inside Another Tag Html"