+ 1
How to remove underlines from table <hr> elements used as links..
11 Respuestas
+ 4
I don't understand what 'table <hr>' is meaning... and I don't no more see the relation between the question and the answer provided ( about styling list elements )...
Anyway, to remove underlines inherited from a <a> link element behavior, you need to style the text to disabled this inherited unwanted style:
text-decoration:none;
... targetting what you want, obviously ;)
+ 2
list-style-type: none; to remove the bullets. float: left; on li to place them side by side. I think you have to apply display: inline-box; to li, too.
+ 2
thnx @mario....i'll use this..
+ 2
@visph there was a second question :/ must have been deleted... I answered that, because I didn't understand hr in table either...
+ 2
simple, use CSS ! ,100% WORKING
+ 1
@mario it works...but li items not side by side..??
+ 1
<hr> headings rows in table
+ 1
thnx @ visph
+ 1
@suraj pandey:
Well, you maybe not talk about <hr> element, but <th> ^^
I never use them, but it's possible that they have the default behavior to be underlined ( as stand for 'Table Header' )... solution is the same, but tagetting <th> instead <a> ( usually the one requiring this solution ;) )
0
please show your code for further help ;)
0
do you by any chance mean <th>?