Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/url/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Semantic ui 语义用户界面如何抵消_Semantic Ui - Fatal编程技术网

Semantic ui 语义用户界面如何抵消

Semantic ui 语义用户界面如何抵消,semantic-ui,Semantic Ui,如何像在引导程序中一样在语义ui中偏移列 例如-在引导过程中,类为“col-sm-5 col-sm-offset-2”的列有5列宽,并跳过页面的前2列。语义UI中没有可用于偏移网格的预定义类 由于语义用户界面的网格中不支持偏移量,因此我认为解决此限制的唯一方法是在需要偏移量的位置插入一个空列: <div class="one wide column"></div> 在一个表单中。使用例如两列您可以使用的列进行分组 <Form.Group> <F

如何像在引导程序中一样在语义ui中偏移列


例如-在引导过程中,类为“col-sm-5 col-sm-offset-2”的列有5列宽,并跳过页面的前2列。

语义UI中没有可用于偏移网格的预定义类


由于语义用户界面的网格中不支持偏移量,因此我认为解决此限制的唯一方法是在需要偏移量的位置插入一个空列:

<div class="one wide column"></div>

在一个表单中。使用例如两列您可以使用的列进行分组

<Form.Group>
    <Form.Field inline width={8}/>
    <Form.Field>...(element which should have offset)...</Form.Field>
</Form.Group>

…(应具有偏移量的元素)。。。

谢谢你,本。通过这种方式,您必须纠正一些额外的代码,但我发现语义的网格系统比引导系统工作得更好。