如何删除垫-网格-瓷砖之间的填充

时间:2019-03-11 12:48:59

标签: angular angular-material

材料计算瓷砖的宽度:

width: calc(((25% - 0.75px) * 3) + 2px); 

是否可以删除“ 0.75px”填充?

1 个答案:

答案 0 :(得分:2)

  

您可以按照官方文档中的说明使用<LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal" android:layout_below="@+id/question_view"> <android.support.design.widget.TextInputLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="8dp" android:layout_marginBottom="8dp"> <Spinner android:id="@+id/spinner_topic" android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="@string/topic"/> </android.support.design.widget.TextInputLayout> <android.support.design.widget.TextInputLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="8dp" android:layout_marginBottom="8dp"> <Spinner android:id="@+id/spinner_subtopic" android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="@string/subtopic"/> </android.support.design.widget.TextInputLayout> </LinearLayout>   here

请参阅stackblitz here

如果您查看第二个gutterSize生成的HTML,则宽度为mat-grid-list,而第一个width: calc(((25% - 0px) * 2) + 0px);的宽度为mat-grid-list