入门求教:view中的section、flex问题请教
发布于 6 年前 作者 jingliu 18854 次浏览 来自 问答

小白请教下,如下片段中,section和HTML中的section tag, flex 和 CSS 中的 flex 是同一个东西吗?

如果是的话,这里的WXML是否继承了HTML或者HTML5哪个的大部分内容?  wxss除了尺寸单位,样式导入外,是不是CSS的东西都兼容?

多谢!

<view class=“section”>

<view class=“section__title”>flex-direction: row</view>

<view class=“flex-wrp” style=“flex-direction:row;”>

<view class=“flex-item bc_green”>1</view>

<view class=“flex-item bc_red”>2</view>

<view class=“flex-item bc_blue”>3</view>

</view>

回到顶部