Link to home
Start Free TrialLog in
Avatar of chefkeifer
chefkeiferFlag for United States of America

asked on

html

is there a way to highlight a column that was copied and pasted into dreamweaver or whatever program and it will automatically put line breaks after each line...
Avatar of PranjalShah
PranjalShah
Flag of United States of America image

Can you elaborate more on the question? Please post the code snippets if you have any.
Avatar of chefkeifer

ASKER

list one
list two
list three
list four...

if you i were to highlight that whole list. i want to have a line break after the one, two, three, and four without having to manually type the line break...some of lists are 20 long
I believe you have this list coming out of a php query while loop so what you can do is





If its a table column then you can have your table td style to do the needful.
while($row = mysql_fetch_array($rslt)) {

echo "list".$row['ID'];
echo "<hr/>";
}

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of PranjalShah
PranjalShah
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial