這篇文章分享css父標籤中的子標籤預設位置詳細介紹
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style> .a{ width: 100px; height: 100px; background: red; position: relative; top: 40px; left: 50px; padding: 30px; } .b{ width: 50px; height: 50px; background: bisque; position: absolute; } </style> </head> <body> <p class="a"> <p class="b"></p> </p> </body> </html>
如果不給b標籤設定top和left。他們會有個預設的值。
top和left會以width和height為基礎進行定位。
以上是css父標籤中的子標籤預設位置詳細介紹的詳細內容。更多資訊請關注PHP中文網其他相關文章!