[SOLVED] HabPanel widget top alignment

Dear,
I’ve a custom widget with a values list inside.
I have 4 of these widgets into a panel. Each widget has a top side not equals to the others.
In the first widget I’ve tried to set “Don’t wrap in container” option, but in this case the background is not aligned with the others. I attach a screenshot of my case.
Can you help me with any css script for to force habpanel to set an absolute top position of my widget into the container?

<style>
    .fullWidth{
  width:80%
  }
  table
{ 
    margin-left: auto;
    margin-right: auto;
}
.myswitch {  position: relative;  display: inline-block;  width: 60px;  height: 30px;  left: 20px;}
.myswitch input {display:none;}

input:checked + .myslider {  background-color: #26FF33; }
input:focus + .myslider {  box-shadow: 0 0 1px #26FF33; }
input:checked + .myslider:before {  -webkit-transform: translateX(26px);  -ms-transform: translateX(26px);  transform: translateX(26px);}
.myslider.round {  border-radius: 30px;}
.myslider.round:before {  border-radius: 50%;}
.nosliderOff {  position: absolute;  cursor: pointer;  top: 0;  left: 0;  right: 0;  bottom: 0;  width: 45px;  background-color: #3F4F5F; }
.nosliderOff.round {  border-radius: 30px;} 
.nosliderOn {  position: absolute;  cursor: pointer;  top: 0;  left: 0;  right: 0;  bottom: 0;  width: 45px;  background-color: #26FF33; }
.nosliderOn.round {  border-radius: 30px;}  
</style>
<div ng-if="(config.item_header!='')">
    <div ><span style="width:100%;text-align:center"><h4>{{config.item_header}}</h4></span></div>
</div>
<table style="width:100%">
    <tr ng-repeat="item in itemsInGroup(config.item_groupid)">

      <td >
        <div class="row">
          <div ng-if="(itemState(item.name)=='ON')" class="col-sm-3"><span class="glyphicon glyphicon-remove-circle" ng-style="{ 'color': '#FF0000' }"></span></div>
          <div ng-if="(itemState(item.name)=='OFF')" class="col-sm-3"><span class="glyphicon glyphicon-ok-circle" ng-style="{ 'color': '#26FF33'}"></span></div>
          <div class="col-sm-9"><p class="text-left" style="font-size:1.1vw">{{item.label.replace('Satel Sens. ','').replace('Volumetrico ','').replace('Satel Output ','').replace('Output','')}}</p></div>
      	</div>
     	</td>
    </tr>
  
  
  
</table>


Thanks

Fausto

[EDIT]
I found the answer in this post: