I'm currently working with this HTML code. My goal is to have the "Get Geotag" button aligned to the right side, with the text positioned anywhere to the left or above the button. However, I'm struggling to properly align the buttons and maintain their functionality (the input text is generated based on getLoc()). Any assistance on this issue would be greatly appreciated!
<button class="button button-positive button-clear pull-right" ng-click="getLoc()" readonly>
Get Geotag
</button>
<input type="text" value="{{geoString}}">
There are no associated CSS styles.
I have attempted the following: Get Geotag
While this successfully aligns the elements, it unfortunately disables the location functionality. Additionally, I have tried using properties like float: right and right-align without success.