분류 jquerymobile

한 라인에 균등하게 버튼 배치하기

컨텐츠 정보

  • 조회 2,759 (작성일 )

본문

<!DOCTYPE html>

<html>

<head>

<script type='text/javascript'

  src='http://code.jquery.com/jquery-2.0.1.js'></script>

<link rel="stylesheet" type="text/css"

  href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.css">

<script type='text/javascript'

  src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.js"></script>

</head>

<body>

  <div data-role="content">

    <div class="ui-grid-b" data-position="fixed">

      <div class="ui-block-a">

        <button id="ONEButton" data-theme="d">ONE</button>

      </div>

      <div class="ui-block-b">

        <button data-theme="d">TWO</button>

      </div>

      <div class="ui-block-c">

        <button data-theme="d">THREE</button>

      </div>

    </div>

  </div>

</body>

</html>