我正在使用jQuery Roundabout创建一个简单的 JS Roundabout。我用
$(document).ready(function(){
$('.roundabout').roundabout({
});
});
并给元素以下CSS:
.roundabout-holder {
list-style: none;
padding: 0;
margin: 0;
height: 10em;
width: 10em;
}
.roundabout-moveable-item {
height: 4em;
width: 4em;
cursor: pointer;
background-color: #ccc;
border: 1px solid #999;
}
.roundabout-in-focus {
cursor: auto;
}
出于某种原因,我的测试页面上的元素对齐方式不正确。我已经尝试了多种方法来解决问题,但我无法弄清楚是什么导致了问题。使用我在网站上的默认设置,水平对齐应该在一条线上。知道这里可能出了什么问题吗?