Devlive 开源社区 本次搜索耗时 1.545 秒,为您找到 571 个相关结果.
  • OOP Style

    1184 2024-06-07 《Underscore.js 1.13.6》
    You can use Underscore in either an object-oriented or a functional style, depending on your preference. The following two lines of code are identical ways to double a list of num...
  • 5.5 Figure alignment

    1183 2024-05-24 《R Markdown Cookbook》
    The chunk option fig.align specifies the alignment of figures. For example, you can center images with fig.align = 'center' , or right-align images with fig.align = 'right' . Thi...
  • Tailwind CSS 响应式设计系统

    响应式设计基础 1. 断点系统 Tailwind CSS 默认提供五个断点: // tailwind.config.js 默认断点配置 module . exports = { theme : { screens : { 'sm' : '640px' , //...
  • Structured Streaming

    1152 2025-03-11 《Apache Iceberg 1.8.1》
    Spark Structured Streaming Iceberg uses Apache Spark’s DataSourceV2 API for data source and catalog implementations. Spark DSv2 is an evolving API with different levels of support...
  • Job Configuration Files

    1149 2025-03-13 《Apache Gobblin 0.17.0》
    Job Configuration Basics Hierarchical Structure of Job Configuration Files Password Encryption Adding or Changing Job Configuration Files Scheduled Jobs One Time Jobs Disable...
  • EventMesh Runtime Quick Start

    EventMesh Runtime Quick Start 1. Binary Distribution Deployment 1.1 Environment 1.2 Download 1.3 Configuration 1.3.1 EventMesh Runtime Configuration 1.3.2 Event Store Configurat...
  • JDBC

    1125 2025-03-25 《Apache Gobblin 0.17.0》
    Gobblin JDBC writer & publisher Proposed design Requirements Design summary Design detail WriterInitializer JdbcWriterInitializer AvroFieldsPickConverter AvroToJdbcEntryConve...
  • Tailwind CSS 的核心理念

    实用优先(Utility-First) Tailwind CSS 的最核心理念是”实用优先”。这种方法颠覆了传统的 CSS 开发方式,不再编写自定义的类名和样式规则,而是通过组合预定义的工具类来构建界面。这种方式带来了以下优势: 1. 降低心智负担 无需为命名而苦恼 减少在 HTML 和 CSS 文件间切换 直观地了解每个类的作用 2. 提高开发...
  • Tailwind CSS 常见问题解决方案

    使用 Tailwind CSS 过程中会遇到各种各样的问题,本节将介绍一些常见问题的解决方案和最佳实践,帮助你更好地使用 Tailwind CSS。 样式冲突问题 类名优先级 <!-- 问题:样式优先级冲突 --> <div class = "text-blue-500 text-red-500" > 优先级冲突的文本 </div>...
  • Tailwind CSS CSS 提取和打包优化

    在现代前端工程中,CSS 的提取和打包优化对于项目性能至关重要。本节将详细介绍如何在使用 Tailwind CSS 的项目中实现 CSS 的高效提取和打包优化。 CSS 提取策略 MiniCssExtractPlugin 配置 // webpack.config.js const MiniCssExtractPlugin = requir...