HTML 生成器?

发布于 2024-10-12 18:29:41 字数 126 浏览 4 评论 0原文

LESS 非常酷。我一直想知道是否有任何好的 html 生成器可以让我更轻松地编写表单或做其他事情。除了 html 之外,还有类似的东西吗?

LESS is very cool. I always wondered if there are any good html generators that allow me to write a form more easily or do other things. Is there something somewhat similar but for html?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

网名女生简单气质 2024-10-19 18:29:41

尝试过 Haml 吗?

在其网站上,此 Haml 代码:

#profile
  .left.column
    #date= print_date
    #address= current_user.address
  .right.column
    #email= current_user.email
    #bio= current_user.bio

被转换为此 HTML。

<div id="profile">
  <div class="left column">
    <div id="date"><%= print_date %></div>
    <div id="address"><%= current_user.address %></div>
  </div>
  <div class="right column">
    <div id="email"><%= current_user.email %></div>
    <div id="bio"><%= current_user.bio %></div>
  </div>
</div>

如果您喜欢 Haml,那么您可能也会喜欢 Sass,它是 CSS 的 Haml。实际上,Haml 附带了 Sass。如果您愿意,您仍然可以使用 LESS。

Tried Haml?

From its website, this Haml code:

#profile
  .left.column
    #date= print_date
    #address= current_user.address
  .right.column
    #email= current_user.email
    #bio= current_user.bio

gets converted into this HTML.

<div id="profile">
  <div class="left column">
    <div id="date"><%= print_date %></div>
    <div id="address"><%= current_user.address %></div>
  </div>
  <div class="right column">
    <div id="email"><%= current_user.email %></div>
    <div id="bio"><%= current_user.bio %></div>
  </div>
</div>

If you like Haml, then you might also like Sass, which is Haml for CSS. Actually, Haml comes with Sass. You can still use LESS if you like.

从﹋此江山别 2024-10-19 18:29:41

请查看Zen-Coding

使用 CSS 样式标记生成具有一些不错功能的 HTML。

Check out Zen-Coding.

Uses a CSS style markup to generate HTML with some nice features.

氛圍 2024-10-19 18:29:41

是否有一个 混合 HTML 在线布局生成器
使用CSS3和HTML5标记在线生成HTML页面布局的源代码。

Did one Blended-HTML On-line Layout Generator
Uses CSS3 and HTML5 markup to generate the source code for HTML page layout on-line.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文