Add margin to collapsible
Description
The following code shows how to add margin to collapsible.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.7.js'></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.css">
<script type='text/javascript'
src="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.js"></script>
<style type='text/css'>
.ui-collapsible {<!-- w ww . j a v a 2 s .co m-->
margin: 8px -15px;
}
</style>
</head>
<body>
<div data-role="page">
<div data-role="content">
<div data-content-theme="e" data-role="collapsible" data-theme="a">
<h3>Title</h3>
<p>Content</p>
</div>
</div>
</div>
</body>
</html>