too much space between lines in a table
i have this code on jsfiddle www.jsfiddle.net/9EL5f/ and i have problems
with text align: as you can see there is a lot of space between the lines!
Why?
css
table {
width: 700px;
margin-left: 130px;
margin-right: 130px;
}
tr {
width: 500px;
float: center;
}
td {
display: table-cell;
width: 300px;
height: 100%;
padding: auto 30px auto 30px;
font-family: verdana,arial,sans-serif;
font-size:13px;
color:red;
line-height: -3;
text-align: right;
}
How can i solve this problem?
No comments:
Post a Comment