css – AngularJS根据另一个元素设置元素固定位置

前端之家收集整理的这篇文章主要介绍了css – AngularJS根据另一个元素设置元素固定位置前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
此应用程序采用图像,这是背景或工作区必不可少的.我需要在给定特定坐标(顶部,左侧,宽度,高度)的情况下将输入文本字段添加到此工作空间.这些坐标将相对于图像(上/左= 0/0).我如何相对于图像定位我的字段/元素?
<img id="background" ng-src="{{page.backgroundImage}}" />
        <input type="text" ng-repeat="field in page.fields" ng-model="field.value" 
               ng-style="{position:'absolute',left:field.left,top:field.top,width:field.width,height:field.height}"/>

上面的代码非常适合绝对定位,但它与图像无关.

解决方法

<div style="position:relative">
    <img id="background" ng-src="{{page.backgroundImage}}" class="course-image" />
    <input type="text" ng-repeat="field in page.fields" ng-model="field.value"
           style="position:absolute"
           ng-style="{left:field.left,height:field.height}" />       
</div>
原文链接:https://www.f2er.com/css/215104.html

猜你在找的CSS相关文章