So the color of my cells borders are behaving strange. I've done border-color:#4A90E2; but the color switches in the middle of the border. I have added image of what happens.
My ccs code for the cell is
.tre{
color:black;
width:613px;
height:20px;
position:absolute;
top:180px;
left:-160px;
font-size:40px;
font-family:avenir;
}
.fyra{
background-color:white;
width:463px;
height:51px;
position:absolute;
top:230px;
left:-160px;
border-radius:10px;
border-color:#4A90E2;
display:inline-block;
font-size:30px;
font-family:avenir;
}
my php code for the cell is
<tr>
<td class="tre">Efternamn</td>
</tr>
<tr>
<td> <input class="fyra"type="text" name="efternamn"></td>
</tr>
How can I fix this, I want the border to be one color.
Image for Fast Snail. This is what happens when I click in the box.