<!DOCTYPE html> <html> <head> <style> .parent{ display:flex; width:150px; height:150px; background-color:lightblue; flex-wrap:wrap; } .child{ width:100%; background-color:lightgreen; color:white; border-radius:3px; border:2px solid rgba(150,150,150,1); padding:4px; margin:0px; align-self: center; } </style> </head> <body> <div class="parent"> <p class="child">Self element</p> </div> </body> </html>
Run
×
Share