提交 8b53f930 编写于 作者: D DCloud_LXH

chore: css README

上级 8268199a
......@@ -10,7 +10,8 @@ module.exports = function (md, { base = '/' }) {
if (attr[0] === 'href') {
// /abc/def.md => ${base}/abc/def.md
if (attr[1].indexOf('/') === 0 && attr[1].indexOf(base) !== 0) attr[1] = base + attr[1].slice(1)
if (/^\w/.test(attr[1])) attr[1] = './' + attr[1]
// abc/def.md => ./abc/def.md
if (/^\w/.test(attr[1]) && !/^\w+:/.test(attr[1])) attr[1] = './' + attr[1]
}
});
}
......
......@@ -4,7 +4,7 @@
可以滚动到指定的scrollTop值处,也可以滚动到指定的目标元素处(通过css选择器selector), 仅支持一级 class
app-uvue下,只有页面的根元素为scroll-view时,本API才生效。[详见](../css/readme.md#pagescroll)
app-uvue下,只有页面的根元素为scroll-view时,本API才生效。[详见](../css/README.md#pagescroll)
<!-- UTSAPIJSON.pageScrollTo.param -->
......
......@@ -7,8 +7,8 @@
<!-- CSSJSON.height.values -->
**注意**
> 属性值为长度 `<length>` 时,App平台可以不设置单位,Web端必须设置单位,详情参考[长度单位](readme.md#length)。
**注意**
> 属性值为长度 `<length>` 时,App平台可以不设置单位,Web端必须设置单位,详情参考[长度单位](./README.md#length)。
<!-- CSSJSON.height.defaultValue -->
......
......@@ -7,8 +7,8 @@
<!-- CSSJSON.width.values -->
**注意**
> 属性值为长度 `<length>` 时,App平台可以不设置单位,Web端必须设置单位,详情参考[长度单位](readme.md#length)。
**注意**
> 属性值为长度 `<length>` 时,App平台可以不设置单位,Web端必须设置单位,详情参考[长度单位](./README.md#length)。
<!-- CSSJSON.width.defaultValue -->
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册