材料计算瓷砖的宽度:
width: calc(((25% - 0.75px) * 3) + 2px);
是否可以删除“ 0.75px”填充?
答案 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
。