diff options
author | xengineering <me@xengineering.eu> | 2021-09-06 09:12:53 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2021-09-06 09:12:53 +0200 |
commit | 3101c4abbda77735d0814cb7ef71b3bfe83581b4 (patch) | |
tree | 231fb8fee7387316737338edeb8e15e83d66fb20 | |
parent | c3ee77f24e1da66d63985313c7f16fed24435cce (diff) | |
download | libweb-3101c4abbda77735d0814cb7ef71b3bfe83581b4.tar libweb-3101c4abbda77735d0814cb7ef71b3bfe83581b4.tar.zst libweb-3101c4abbda77735d0814cb7ef71b3bfe83581b4.zip |
Select left for text-align of li Elements1.1.2
-rw-r--r-- | css/xengineering.css | 4 | ||||
-rw-r--r-- | html/template.html | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/css/xengineering.css b/css/xengineering.css index a868e48..f8b186f 100644 --- a/css/xengineering.css +++ b/css/xengineering.css @@ -42,6 +42,10 @@ ul { padding-left: 0px; } +li { + text-align: left; +} + nav { background-color: black; } diff --git a/html/template.html b/html/template.html index 88c99cd..a0847dc 100644 --- a/html/template.html +++ b/html/template.html @@ -36,14 +36,14 @@ <ol> <li>One</li> <li>Two</li> - <li>Three</li> + <li>Long point: Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.</li> </ol> <p>This is an unordered list:</p> <ul> <li>One</li> <li>Two</li> - <li>Three</li> + <li>Long point: Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.</li> </ul> <p>Have a look at this beautiful code:</p> |