我可以在sass中实现这样的目标吗?
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal" android:layout_width="match_parent"
android:layout_height="match_parent">
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="wrap_content"
android:layout_height="60dp"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="Large Text"
android:id="@+id/txtPlayerItemNo"
android:textStyle="bold"
android:textSize="20sp"
android:gravity="center"
android:focusable="false"
android:clickable="false"
android:background="@drawable/bg_player"
android:layout_margin="4dp"
android:layout_weight="1"
android:padding="4dp" />
<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="IN"
android:id="@+id/chk_ingame"
android:layout_marginRight="5dp" />
</TableRow>
结果应为1,180,180,1。 这可能与萨斯有关吗?
答案 0 :(得分:-1)
你必须合并这些值..否则就无法合并。
您的问题示例:
ul.menu li{
background-color: rgba(1, 180, 180, 1);
// or: background-color: rgba(0+1, 196-16, 196-16, 1+0);
}
祝你好运