버튼위에 텍스트와 아이콘 배치
본문
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-2.0.2.js'></script>
<script type="text/javascript"
src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.js"></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.css">
</head>
<body>
<div data-role="page" id="mobile">
<div data-role="content">
<div data-role="controlgroup" data-type="horizontal" class="ui-body">
<a href="" data-role="button" data-mini="true"
data-icon="bars">Test</a>
<a href="" data-role="button"
data-mini="true" data-icon="grid">Test1</a>
</div>
</div>
</div>
</body>
</html>
- 이전글수직으로 두 개 아이콘 버튼 배치하기 15.05.25
- 다음글텍스트 버튼에 아이콘 버튼 배치하기 15.05.25