* { margin: 0; padding: 0; list-style: none; } .containe { width: 500px; height: 30px; margin: 20px; /* background-color: #ccc; */ display: flex; justify-content: space-between; align-items: center; } .containe li { min-width: 30px; height: 30px; color: rgb(146, 146, 219); border: 1px solid rgb(146, 146, 219); border-radius: 3px; text-align: center; line-height: 30px; margin-left: 10px; cursor: pointer; user-select: none; } .containe li:hover { background-color: rgb(146, 146, 219); color: #fff; } .containe li.active { background-color: rgb(146, 146, 219); color: #fff; } .containe li.ctrl { width: 80px; height: 30px; } .containe li.ctrl.disabled { background-color: #eee; color: #cccccc; border: 1px solid #ccc; cursor: not-allowed; }