IE的背景位置

时间:2019-03-20 13:15:19

标签: html css internet-explorer

我有一个链接(一个栏杆),我尝试将背景图像位置作为图标放置在它上面,所以我喜欢此代码段:

.page {
  color: #ffffff;
  height: 75vh;
  min-height: 850px;
  padding-bottom: 0;
}

.page ul.col-2 {
		height: 100%;
		padding: 0;
		font-size: 0;
		position: relative;
    background-color: #f49841;
}

.page ul.col-2 li {
  height: 100%;
  width: 50%;
  display: inline-block;
  font-size: 12px;
  vertical-align: top;
  overflow: hidden;
  position: relative;
}

.page ul.col-2 li ul.line-2 {
  padding: 0;
  height: 100%;
}

.page ul.col-2 li ul.line-2 li {
    list-style: none;
    vertical-align: top;
    width: 100%;
}

.page ul.col-2 li ul.line-2 li:nth-child(1) {
  background-color: #4286f4;
  height: 30%;
}

.page ul.col-2 li ul.line-2 li:nth-child(2) {
  height: 70%;
}

.page ul.col-2 li ul.line-2 li ul.col-2 {
  padding: 0;
}

.page ul.col-2 li ul.line-2 li ul.col-2 li {
  height: 100%;
  width: 50%;
  display: inline-block;
  vertical-align: top;
}

.page ul.col-2 li ul.line-2 li ul.col-2 li:nth-child(1) {
  background-color: #40ed48;
}

.page ul.col-2 li ul.line-2 li ul.col-2 li:nth-child(2) {
  background-color: #ed3f3f;
}


.page ul.col-2 li ul.line-2 li .my-link {
  background-image: url(https://upload.wikimedia.org/wikipedia/commons/1/16/Deletion_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  padding-right: 30px;
  color: inherit;
  text-decoration: none;
}
<div class="page">
<ul class="col-2">
	<li>
			<div class="text-1">
					text 1
			</div>
	</li>
	<li>
		<ul class="line-2">
			<li>
				<div class="box-text">
					<a class="my-link">My link</a>
				</div>
			</li>
    <li>
				<ul class="col-2">
					<li>
						text 2
						
					</li>
					<li>
						text 3
					</li>
				</ul>
			</li>
		</ul>
	</li>
</ul>
</div>

除IE之外,其他任何地方都可以使用。我尝试更改位置或显示。但是没有任何东西能带来我期望的结果。

===编辑===

我只是检查一下,很奇怪,它似乎在摘要中起作用。

我加入了我的代码的图片

code

==编辑2 ==

我更新了代码段,以更好地了解链接周围的内容,但仍然给出了不错的结果。我加入了一张关于我的env的图片: enter image description here

无论我输入的值如何,背景位置始终总是居中。

1 个答案:

答案 0 :(得分:0)

我只是将删除图标css移到:after元素上,并且 IE11 正常工作。希望对您有帮助。谢谢

.my-link {
      color: inherit;
      text-decoration: none;
    }

    .my-link:after {
      background-image: url(https://upload.wikimedia.org/wikipedia/commons/1/16/Deletion_icon.svg);
      background-repeat: no-repeat;
      background-size: contain;
      background-position: right;
      padding-right: 30px;
      content: '';
    }

.my-link:hover {
  color: red;
}

.my-link:hover::after {
  background-image: url(https://cdn1.iconfinder.com/data/icons/warnings-and-dangers/400/Warning-02-512.png);
}
<a class="my-link">My link</a>