Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图将 3 个电话图标放置在右下角。在右下角的图像下方。
在这里提琴
就在我认为我通过使用例如 margin-left xxpx 等来获得它时,图像会移动但然后垂直对齐。将某物放置在您想要的任何位置的最佳做法是什么?
.imgs { display:inline; margin: 0px auto; margin-left: 1002px; }
.images > div { display: inline-block; float:right }
利用
.images { float:right; }
或者
.imgs { float:right; display:inline-block; }
在第二种情况下,您也可以在两个图像之间提供间距。margin-left:10px;
margin-left:10px;