position: relative;生成相对定位的元素,相对于其正常位置进行定位(相对定位)。
padding-bottom: 属性设置元素的下内边距。
border-bottom: 1px dotted;下边框为1像素的虚线。
position: absolute;生成绝对定位的元素,绝对于其正常位置进行定位(绝对定位)。
display: inline-table;会作为内联表格来显示(类似 <table>)。
2024-04-08 11:03:45
position: relative;生成相对定位的元素,相对于其正常位置进行定位(相对定位)。
padding-bottom: 属性设置元素的下内边距。
border-bottom: 1px dotted;下边框为1像素的虚线。
position: absolute;生成绝对定位的元素,绝对于其正常位置进行定位(绝对定位)。
display: inline-table;会作为内联表格来显示(类似 <table>)。
下一篇:(箱子)桶排序及基数排序