How to align text in columns
-
[Moderator note: In future please use a more descriptive title]
hi, i know this might be out of scope of wordpress forum
but i need help with this , i explained everything screenshot below.
<I want style in -Pic 2>https://i.imgur.com/Ojlx66x.png
Try This Code !!! -> https://www.w3schools.com/html/tryit.asp?filename=tryhtml_basic
<!DOCTYPE html> <html> <head> <style> * { box-sizing: border-box; } .header, .footer { background-color: grey; color: white; padding: 15px; } .column { float: left; padding: 15px; } .clearfix::after { content: ""; clear: both; display: table; } .menu { width: 25%; } .content { width: 75%; } .menu ul { list-style-type: none; margin: 0; padding: 0; } .menu li { padding: 8px; margin-bottom: 8px; background-color: #33b5e5; color: #ffffff; } .menu li:hover { background-color: #0099cc; } </style> </head> <body> <div class="header"> </div> <div class="clearfix"> <div class="column menu"> <ul> <Strong> Test text appear </strong> <li>Part1</li> <li>Part 3</li> </ul> </div> </div> <div class="footer"> <p>Welcome</p> </div> </body> </html>
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘How to align text in columns’ is closed to new replies.