I have founded many question like mine on StackOverflow example1 example2 but for a unknown reason I still have some borders displayed around my image:
.imgCadenas{
width: 50px;
height: 50px;
background: url('/cadenas.png');
background-repeat: no-repeat;
background-position: right;
background-size: 100%;
border:0;
border-style: none;
position: absolute;
right: 150px;
top: 5px;
}
Someone has a solution ?
[EDIT] with your advices I have this CSS in the browser:
.liMachine {
list-style-type: none;
border-style: solid;
margin-bottom: 5px;
word-break: break-all;
position: relative;
}
.imgCadenas{
width: 50px;
height: 50px;
background: url('http://icons.iconarchive.com/icons/paomedia/small-n-flat/256/sign-check-icon.png');
background-repeat: no-repeat;
background-position: right;
background-size: 100%;
border: 0 !important;
border-style: none !important;
outline: none !important;
display: block;
position: absolute;
right: 250px;
top: 5px;
}
.whoLock{
position: absolute;
right: 15px;
top: 10px;
}
<li class="liMachine switch">
<div id="nameMachine">
<h3>My machine</h3>
</div>
<div id="stateMachine">
State:<span class="state">running</span>
</div>
<div>
<img class="imgCadenas">
<p class="whoLock">Locked by: StackOverflow</p>
</div>
</li>