Issue
How do you stack HTML tags like hyperlinks vertically without using HTML list or breaks?
Example:
<a href "#">A</a> <a href "#">B</a> <a href "#">C</a>
Output
A
B
C
Solution
Try adding block
to your anchor element
a {
display: block;
}
Answered By - Scott Brown
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.