如何正确对齐页面中的项目? [HTML]

时间:2017-06-19 08:26:13

标签: html angularjs position alignment

我有这个页面: enter image description here

按“添加新公司”按钮,打开如下表格: enter image description here

我希望桌子始终位于中心,“添加”按钮和表格应该在桌子的右侧,不应该向下移动,“搜索”按钮打开另一个页面左侧的表格没有任何移动。

如何使用CSS,HTML和Angular完成? 按要求编码:

此代码就在“表”代码之前。

<button ng-click="g.createCompanyShow()">
		<img alt="Create" src="../Ico/+.png" width="200px" height="20px">
	</button>
	<div ng-show="g.createCompanyButton">
		<div ng-controller="createCompanyCTRL as c" ng-app="myApp">
			<ng-include src="'createCompany.html'"></ng-include>
		</div>
	</div>

1 个答案:

答案 0 :(得分:0)

使用CSS命令,如:&#34; position:absolute&#34; &#34; margin-left / right&#34;我得到了我想要的结果。