안녕하세요
Bootstrap 5.3 + ax5 grid 를 적용해 보고 있습니다.
input-group class 사용시
ax5grid.css 는
.input-group {
position: relative;
display: table;
border-collapse: separate;
}
bootstrap.css는
.input-group {
position: relative;
display: flex;
flex-wrap: wrap;
align-items: stretch;
width: 100%;
}
으로 충접되어 서로 간섭을 받네요
제가 추가한 element들을 flex로 하고 싶은데 grid의 display:table이 적용되어 버립니다.
label {
display: inline-block;
max-width: 100%;
margin-bottom: 5px;
font-weight: bold;
}
label tag도 ax5grid.css의 스타일이 적용되어 bold로 나오네요
ax5grid.css 와 bootstrap.css를 같이 적용할 수 없는가요?
ax5 오픈 소스 감사합니다. ^^