웹 브라우저의 페이지가 더 작은 크기로 재조정 될 때이 두 버튼이 서로 부딪치지 않게하십시오.재조정 할 때 충돌하는 버튼을 피하십시오.
나는 여백을 사용하려고 시도했지만 두 버튼 모두 절대 위치에 있기 때문에 전혀 영향을 미치지 않습니다.
여기이
#appButtons{
\t height:40px;
\t width:125px;
\t background-color:#000080;
\t border:solid 1px #000080;
\t color:white;
\t border-radius:4px;
\t text-align:center;
\t margin-bottom:0px;
}
#appButtons:hover{
\t background-color:#E9E9E9;
\t color:#000080;
}
<table>
<tr style="display:none">
<button id="appButtons" name="see_words" style="position:absolute;left:25%;top:10%;display: inline-block;">Check words in your dictionary</button><br>
</tr>
<tr>
<button id="appButtons" name="add_words" style="position:absolute;right:25%;top:10%;display:inline-block;">Add words to your dictionary</button><br>
</tr>
</table>
인가? –
@RalphDavidAbernathy 꼭 그렇지는 않지만 부모 div를 이동하지 않고 "어디서나"배치 할 수있는 방법이 있습니까? – leveeee
실제로 어떻게 단추를 배치하고 싶습니까? 당신은 그것들을 수평 및 수직 중심에 두어 각 버튼 주위에 여백을 갖길 원하십니까? "어디서나"정의 할 수 있습니까? 이 문제를 해결하는 데 도움을 주려고합니다. –