css3的选择器root a[href^=""] 有什么用!!

html-css08

css3的选择器root a[href^=""] 有什么用!!,第1张

root a[href^="abc"] 匹配链接地址以abc开头的a标签

你这边截图的代码应该是用打包工具生成的,源码可能是用了某种css预处理器(less或scss)写的,有这么多网址显然是因为写这个样式的人没有编程思维,代码写的太差了

首先,ssh登录Y1S后台,修改opkg包管理器配置文件

mv /etc/opkg.conf /etc/opkg.conf.orig

cat >/etc/opkg.conf <<EOF

dest root /

dest ram /tmp

lists_dir ext /var/opkg-lists

option overlay_root /overlay

src/gz barrier_breaker_base http://downloads.openwrt.org/barrier_breaker/14.07/ramips/mt7620a/packages/base

src/gz barrier_breaker_extra http://downloads.openwrt.org/barrier_breaker/14.07/ramips/mt7620a/packages/extra

src/gz barrier_breaker_luci http://downloads.openwrt.org/barrier_breaker/14.07/ramips/mt7620a/packages/luci

src/gz barrier_breaker_management http://downloads.openwrt.org/barrier_breaker/14.07/ramips/mt7620a/packages/management

src/gz barrier_breaker_oldpackages http://downloads.openwrt.org/barrier_breaker/14.07/ramips/mt7620a/packages/oldpackages

src/gz barrier_breaker_packages http://downloads.openwrt.org/barrier_breaker/14.07/ramips/mt7620a/packages/packages

src/gz barrier_breaker_routing http://downloads.openwrt.org/barrier_breaker/14.07/ramips/mt7620a/packages/routing

src/gz barrier_breaker_telephony http://downloads.openwrt.org/barrier_breaker/14.07/ramips/mt7620a/packages/telephony

arch all 1

arch noarch 1

arch ralink 10

arch ramips_24kec 20

EOF

复制代码

接着,更新软件列表:

opkg update

复制代码

最后,安装一个软件试试:

opkg install openssh-sftp-server

(www.csslhy.com)