i can't set my table row as link to something. I can use only css and html. I tried differenet things from div in row to something another, but still can't make it works.
|
feedback
|
|
You have two ways to do this:
I made the second work using:
| |||||||||||||
feedback
|
|
The usual way is to assign some JavaScript to the If you can't use JavaScript, then you must use a trick:
The latter will force the link to fill the whole cell so clicking anywhere will invoke the link. | |||
|
feedback
|
|
If you're on a browser that supports it you can use CSS to transform the
Of course, you're limited to not putting block elements inside the | |||
feedback
|
|
If you have to use a table, you can put a link into each table cell:
And make the links fill up the entire cells:
If you are able to use
Here is the CSS that goes with the
| |||
|
feedback
|
|
You can't wrap a
And add it to your table like this:
| ||||
|
feedback
|
|
Can you add an A tag to the row?
Is this what you're asking? | |||
|
feedback
|
Something along these lines perhaps? Though it does use JS, but that's only way to make a row (tr) clickable. Unless you have a single cell with an anchor tag that fills the entire cell. And then, you shouldn't be using a table anyhow. | |||
|
feedback
|