我想定位一个CSS背景图片。我找到的所有样本都是垂直和水平中心。我想对齐左但垂直中心文档示例如下:
background-position: top;
background-position: bottom;
background-position: left;
background-position: right;
background-position: center;
background-position: 25% 75%;
background-position: 0px 0px, center;
也不清楚如何分开水平和垂直对齐。
Iterestingly this doc和this other one(还有更多)甚至没有提到'水平'和'垂直'或'x'/'y'这个词....
我错过了什么?
答案 0 :(得分:1)
使用:background-position: <<horizontal>> <<vertical>>
background-position: left center;
答案 1 :(得分:0)
使用这些:
background-size: cover;
background-position: left center;