CSS: move a “float:right” element to top (to align with the first element of the list)

前端 未结 2 1434
渐次进展
渐次进展 2021-01-05 16:16

I\'ve a sequence of elements and the last one has css \"float:left\".

I would like to display it at the same height of the first element and not on the bottom of th

2条回答
  •  遥遥无期
    2021-01-05 16:52

    you have a small error, make it:

    .field-field-artists { 
    
            width:400px; 
            float:right; 
            clear:right; 
            margin-top: -200px; 
        } 
    

提交回复
热议问题