I have an ASP.NET application with contains a list of hyperlinks. After each hyperlink, there is a br tag that puts each hyperlink on their own line. I want to increase the spacing between each line. I don’t want to add another br trag since that does not provide the control I am looking for. I have tried different CSS styling without any change. What CSS styling do I use to accomplish this?
I have an ASP.NET application with contains a list of hyperlinks. After each hyperlink,
Share
You could add margin or padding to top of your BR tags eg.
If that isn’t feasible, then make your hyperlinks block level and add margin or padding to top of them eg.
Using the latter method you don’t require the BR tags anymore.