I am trying to make simple single page application in which a header ,footer and contend(having background image ) input field .When I added input field it cut background image .I need that input field come above the background image ..can you please tell me where I am doing wrong mean how to add input field above background image http://ift.tt/1bG9RFe
<html ng-app="ionicApp">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<title>Ionic List Directive</title>
<link href="//code.ionicframework.com/nightly/css/ionic.css" rel="stylesheet">
<script src="//code.ionicframework.com/nightly/js/ionic.bundle.js"></script>
</head>
<body >
<ion-view>
<ion-header-bar class=" bar bar-positive ">
<h1 class="title">Title!</h1>
</ion-header-bar>
<ion-content class="bg" style="position:absolute; left: 0; right: 0; top: 43px; bottom: 43px;">
<label class="item item-input">
<span class="input-label">Username</span>
<input type="text">
</label>
</ion-content>
<ion-footer-bar class=" bar bar-footer bar-positive" style="position:fixed!important">
<h1 class="title">Fotter!</h1>
</ion-footer-bar>
</ion-view>
</body>
</html>
Aucun commentaire:
Enregistrer un commentaire