anyone here good with basic CSS and HTML?
2023-May-07, Sunday 11:13 am![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
When I use lists, I like having extra vertical space between each listed item. I have done it for years here by deliberately adding two line breaks at the end of each line as:
<br/><br/>
I'd prefer something easier, so I can do it once and not have to repeat it for every item in the list. I tried the following code, and it works great in a test editor, but it fails in an actual Dreamwidth page.
<p> <style type="text/css"> li { margin-bottom: 1em; } </style> <ol> <li>A</li> <li>B</li> <li>C</li> </ol> </p>
I'd rather have an inline code that I put into the OL element, but I couldn't even get that much to display properly in the test editor. I thought I knew my basics, but this simple problem has me stumped. (Please don't make me learn Dreamwidth Journal Themes. I'm going to have to learn Dreamwidth Journal Themes, aren't I?) Any suggestions?
no subject
Date: 2023-May-07, Sunday 04:22 pm (UTC)no subject
Date: 2023-May-07, Sunday 04:55 pm (UTC)no subject
Date: 2023-May-07, Sunday 06:37 pm (UTC)no subject
Date: 2023-May-07, Sunday 07:22 pm (UTC)Testing, testing...
Oh, hey that code does work! I didn't know about HTML grids. Apparently that the new internal design for tables? It sounds like they're intentionally designed to solve exactly the kind of micro-management problem I was having. I'm learning something new today. Thanks! :)