avatar
文章
2252
标签
36
分类
0
首頁
目录
标签
友鏈
关于
Logo阿超TailwindCss 返回首页
搜索
首頁
目录
标签
友鏈
关于

TailwindCss

发表于2022-06-06|更新于2026-02-24
|浏览量:

懒惰象生锈一样,比操劳更能消耗身体;经常用的钥匙,总是亮闪闪的。——富兰克林

分享一个CSS框架,内置了很多css样式:

https://www.tailwindcss.cn/

使用方式:

https://www.tailwindcss.cn/docs/installation

注意其不支持IE浏览器

仓库地址:https://github.com/tailwindlabs/tailwindcss

甚至你可以直接在Playground中进行尝试:

https://play.tailwindcss.com/

image-20220606122242946

前端
上一篇
类型描述符
我知道你愚蠢轻佻、头脑空虚,然而我爱你;我知道你的企图你的理想,你的势力,你的庸俗,然而我爱你;我知道你是个二流货色,然而我爱你。——毛姆 见: https://docs.oracle.com/javase/specs/jvms/se7/html/jvms-4.html https://docs.oracle.com/javase/specs/jvms/se7/html/jvms-4.html#jvms-4.2.1 在java中,由于历史原因,出现在类文件结构中的二进制名称语法与我们常用的类名不同,通常使用(正斜杠)/替换了原本的包名间隔(句号). 例如Thread的类名叫java.lang.Thread,但是在class文件格式的描述符中使用的内部格式,对Thread类名称utf8的引用却是:java/lang/Thread 不信我们随便打开一个class文件 可以看到类似的描述符 那如何获取类的描述符呢?它的规则又是如何呢? 首先,基本类型描述符,都是以ASCII字符表示,例如L 正斜杠类名;表示对象类型,[表示数组类型 我们可以在sun.invoke.util.Wra...
下一篇
javadoc-plugin
掉头一去是风吹黑发,回首再来已雪满白头。——余光中 我们可以使用maven-javadoc-plugin生成javadoc 123456789101112131415<!-- Javadoc --><plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.4.0</version> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> ...
相关推荐
2022-12-26
pug
人心只能赢得,不能靠人馈赠——叶芝 分享一个前端框架pug github地址:https://github.com/pugjs/pug 它可以以下面的方式编写html 12345678910111213141516doctype htmlhtml(lang="en") head title= pageTitle script(type='text/javascript'). if (foo) bar(1 + 5); body h1 Pug - node template engine #container.col if youAreUsingPug p You are amazing else p Get on it! p. Pug is a terse and simple templating language with a strong focus on performance and powerful fe...
2020-09-02
js获取url上的参数
获取url上的参数 123456789101112function getUrlParam(name) { if (name == null) { return name; } var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)"); var r = window.location.search.substr(1).match(reg); if (r != null) { //return unescape(r[2]); return r[2]; } return null; } 1console.log(getUrlParam("id"));
2024-08-18
Apache-ShenYu支持namespace功能(二)
我曾踏足山巅,也曾进入低谷,二者都让我受益良多。——《英雄联盟》瓦洛兰之盾塔里克 上一期:Apache-ShenYu支持namespace功能 喜闻乐见,这是个连续系列,今天主要是给shenyu-dashboard的selector部分添加namespace适配 PR连接: https://github.com/apache/shenyu-dashboard/pull/471 这里有一个知识点 123456import { connect } from "dva";@connect(({ global }) => ({ currentNamespaceId: global.currentNamespaceId,}))class RuleCopy extends Component {} 装饰器语法 @connect 来连接组件与 dva 的状态管理。@connect 是一个高阶函数,通常用于将 Redux store(在 dva 中表现为 model)中的状态映射到组...
2026-04-12
ralph
血沃中原肥劲草,寒凝大地发春华——鲁迅 Ralph:一只不肯下班的自治 AI 工程师循环体——直到 PRD 全部打勾才肯停Ralph 不是一个“聊天型”工具。 Ralph 更像是你团队里那个最较真、最执拗、最愿意熬夜的工程搭子:你把 PRD 交给他,他不问“要不要我帮你想想”,他直接开跑——一轮、一轮、再一轮——直到 PRD 上每一个条目都被标记为完成。 它的自我介绍非常直接: Ralph is an autonomous AI agent loop that runs AI coding tools (Amp or Claude Code) repeatedly until all PRD items are complete.Each iteration is a fresh instance with clean context.Memory persists via git history, progress.txt, and prd.json. 一句话翻译成工程语言:Ralph = 一个 Bash 循环 + 一个会写代码的 AI 工具 + 一个严格的任...
2026-03-17
GitNexus
时间是伟大的导师。——伯克 GitNexus⚠️ Important Notice:** GitNexus has NO official cryptocurrency, token, or coin. Any token/coin using the GitNexus name on Pump.fun or any other platform is not affiliated with, endorsed by, or created by this project or its maintainers. Do not purchase any cryptocurrency claiming association with GitNexus. Join the official Discord to discuss ideas, issues etc! GitNexus: The Zero-Server Code Intelligence Engine - ...
2021-06-03
js动态调用函数
兵无常势,水无常形,能因敌变化而取胜者,谓之神。——孙子 我们可以使用变量名['函数名']()去调用一个函数 12345678<script> var ruben = { run() { console.log("ruben中的run被调用啦!") } } ruben['run']()</script> 可以用于动态调用函数场景
avatar
阿超
我的名字叫阿超 年龄25岁 家在北京市 职业是软件开发 每天最晚也会在八点前回家 不抽烟 酒浅尝辄止 晚上十二点上床 保证睡足八个小时 睡前写一篇博客 再做二十分钟俯卧撑暖身 然后再睡觉 基本能熟睡到天亮 像婴儿一样不留下任何疲劳和压力 就这样迎来第二天的早晨 健康检查结果也显示我很正常 我想说明我是一个不论何时都追求内心平稳的人 不拘泥于胜负 不纠结于烦恼 不树立使我夜不能寐的敌人 这就是我在这社会的生活态度
文章
2252
标签
36
分类
0
Follow Me
公告
This is my Blog
最新文章
superfile2026-07-28
t3code2026-07-27
bitchat2026-07-26
ego-lite2026-07-25
Kronos2026-07-24
© 2025 - 2026 By 阿超框架 Hexo 8.1.1|主题 Butterfly 5.5.4
搜索
数据加载中