<\/code> via the ERB tag. This tag serves as an integration point for containing view content dynamically rendered by Rails; <\/li>\n<\/ul>\n<\/details>\n

Generate a test page using the pages<\/code> controller and the html_test_1<\/code>, html_test_2<\/code>, html_test_3<\/code> and html_test_4<\/code> actions<\/h3>\n
Expand…<\/summary>\n```bash\n$ rails g controller pages html_test_1 html_test_2 html_test_3 html_test_4\n create app\/controllers\/pages_controller.rb\n route get \"pages\/html_test_1\"\n get \"pages\/html_test_2\"\n get \"pages\/html_test_3\"\n get \"pages\/html_test_4\"\n invokeerb\n create app\/views\/pages\n create app\/views\/pages\/html_test_1.html.erb\n create app\/views\/pages\/html_test_2.html.erb\n create app\/views\/pages\/html_test_3.html.erb\n create app\/views\/pages\/html_test_4.html.erb\n invoke helper\n create app\/helpers\/pages_helper.rb\n```\n
    \n
  • Since routes are also added when creating controllers and actions, any created actions can be accessed via the following link: <\/li>\n
  • localhost:3000\/pages\/html_test_1<\/code><\/li>\n
  • localhost:3000\/pages\/html_test_2<\/code><\/li>\n
  • localhost:3000\/pages\/html_test_3<\/code><\/li>\n
  • localhost:3000\/pages\/html_test_4<\/code><\/li>\n<\/ul>\n

    Use VSCode to open the config\/routes.rb<\/code> file<\/h3>\n
      \n
    • Add the following lines at the end of the file to direct the page root to the pages<\/code> controller and html_test_1<\/code> action created earlier. This way, when accessing your website or system, the first page displayed will be the pages<\/code> controller's html_test_1<\/code> page. Otherwise, Rails' default page will be displayed. <\/li>\n<\/ul>\n
      \n    <\/title><meta content=\"width=device-width,initial-scale=1\" name=\"viewport\"><\/meta><meta content=\"yes\" name=\"apple-mobile-web-app-capable\"><\/meta><meta content=\"yes\" name=\"mobile-web-app-capable\"><\/meta><link href=\"\/icon.png\" rel=\"icon\" type=\"image\/png\"><\/link><link href=\"\/icon.svg\" rel=\"icon\" type=\"image\/svg+xml\"><\/link><link href=\"\/icon.png\" rel=\"apple-touch-icon\"><\/link><\/pre>\n<ul>\n<li>If the <code>--skip-routes<\/code> parameter is passed when creating the controller, you can ignore adding routes for the created action.The complete command will become <code>rails g controller pages html_test_1 html_test_2 html_test_3 html_test_4 --skip-routes<\/code><\/li>\n<\/ul>\n<\/details>\n<h3>Show Rails routes<\/h3>\n<details><summary>Expand…<\/summary>Using the terminal, you can specify a controller (using `-c`) to display the route, for example the `pages` controller:\n<pre><code>$ rails -v\nRails 8.0.0\n\n$ time rails new classless-css-tailwind\n...\nreal    0m47.500s\nuser    0m33.052s\nsys     0m4.249s<\/code><\/pre>\n<p>Alternatively, you can use the following command to display all routes: <\/p>\n<pre><code>$ cd classless-css-tailwind && code .<\/code><\/pre>\n<ul>\n<li>You can also access the route through your browser using the address <code>http:\/\/127.0.0.1:3000\/rails\/info\/routes<\/code>. Don't forget to start the development server using <code>bin\/dev<\/code> or standard <code>rails server<\/code> in the project root. The development server \"listens\" for changes to JavaScript files and CSS files to perform the necessary processing to serve them to the user. <\/li>\n<li>In order for changes to these files to be immediately executed and viewed in the browser, a gem like Rails Live Reload needs to be installed. <\/li>\n<\/ul>\n<\/details>\n<h3>We will create four pages with HTML content to test CSS styles. <\/h3>\n<p>Ruby on Rails uses the MVC (Model-View-Controller) architecture by default to initiate project organization. Most of the code is organized in the following folders: <\/p><ul>\n<li>Code related to domain\/business logic and data should be kept in the <code>app\/models<\/code> folder; <\/li>\n<li>Display related code (HTML, JSON, XML, etc.) will be located in the <code>app\/views<\/code> folder; <\/li>\n<li>Code related to the request lifecycle will be located in the <code>app\/controllers<\/code> folder; <\/li>\n<\/ul>\n<h3>Insert the content of the <code>html_test_1<\/code> page<\/h3>\n<details><summary>Expand…<\/summary>- Visit the link https:\/\/github.com\/dbohdan\/classless-css\/blob\/master\/screenshot-page.html and copy all the content inside the `<main>` tag, As shown below\n<pre><code>$ rails -v\nRails 8.0.0\n\n$ time rails new classless-css-tailwind\n...\nreal    0m47.500s\nuser    0m33.052s\nsys     0m4.249s<\/code><\/pre>\n<\/details>\n<h3>Insert the content of the <code>html_test_2<\/code> page<\/h3>\n<details><summary>Expand…<\/summary>- Visit the link https:\/\/gist.github.com\/tommaitland\/5865229 and copy all content inside the `<form>` tag as shown below\n<pre><code>$ cd classless-css-tailwind && code .<\/code><\/pre>\n<legend>A Sample Form Legend<\/legend> <label for=\"name\">Name: <\/label> <label for=\"email\">Email: <\/label> <label>Button: <\/label> <label>Single Checkbox: <\/label> <fieldset><legend>Group of Checkboxes: <\/legend> <label>Checkbox 1: <\/label> <label>Checkbox 2: <\/label> <label>Checkbox 3: <\/label> <label>Checkbox 4: <\/label> <\/fieldset><label>Color: <\/label> <label>Date: <\/label> <label>Date, Time (Local): <\/label> <label>File: <\/label> <label>Image: <\/label> <label>Month: <\/label> <label>Number: <\/label> <label>Password: <\/label> <label>Single Radio: <\/label> <fieldset><legend>Group of Radios: <\/legend> <label>Radio 1: <\/label> <label>Radio 2: <\/label> <label>Radio 3: <\/label> <label>Radio 4: <\/label> <\/fieldset><label>Range: <\/label> <label>Reset: <\/label> <label>Time: <\/label> <label>Search: <\/label> <label>Tel: <\/label> <label>Text: <\/label> <label>URL: <\/label> <label>Week: <\/label> This is a button! <label>Select 1: <\/label> TestTest<label>Select 2: <\/label> TestTest<label>Select Multiple: <\/label> TestTest<label>Select Groups: <\/label> <optgroup label=\"First Group\">TestTest<\/optgroup><optgroup label=\"Second Group\">TestTest<\/optgroup><optgroup label=\"Third Group\">TestTest<\/optgroup><fieldset><legend> Datalist: <\/legend> <datalist>- Open the `app\/views\/pages\/html_test_2.html.erb` file and paste the content copied above\n<\/datalist><\/fieldset><\/details>\n<h3>Insert the content of the <code>html_test_3<\/code> page<\/h3>\n<details><summary>Expand...<\/summary>Visit the link https:\/\/github.com\/cbracco\/html5-test-page\/blob\/master\/index.html and copy all the content after the `<div>` tag, where Contains the text `<div>`\n<pre class='brush:php;toolbar:false;'>\n    <title><\/title><meta content=\"width=device-width,initial-scale=1\" name=\"viewport\"><\/meta><meta content=\"yes\" name=\"apple-mobile-web-app-capable\"><\/meta><meta content=\"yes\" name=\"mobile-web-app-capable\"><\/meta><link href=\"\/icon.png\" rel=\"icon\" type=\"image\/png\"><\/link><link href=\"\/icon.svg\" rel=\"icon\" type=\"image\/svg+xml\"><\/link><link href=\"\/icon.png\" rel=\"apple-touch-icon\"><\/link><\/pre><\/details>"}	</script>
      	
      <meta http-equiv="Cache-Control" content="no-transform" />
      <meta http-equiv="Cache-Control" content="no-siteapp" />
      <script>var V_PATH="/";window.onerror=function(){ return true; };</script>
      </head>
      
      <body data-commit-time="2023-12-28T14:50:12+08:00" class="editor_body body2_2">
      <h1><a href="http://www.miracleart.cn/">国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂</a></h1>
      	<link rel="stylesheet" type="text/css" href="/static/csshw/stylehw.css">
      <header>
          <div   id="377j5v51b"   class="head">
              <div   id="377j5v51b"   class="haed_left">
                  <div   id="377j5v51b"   class="haed_logo">
                      <a href="http://www.miracleart.cn/" title="" class="haed_logo_a">
                          <img src="/static/imghw/logo.png" alt="" class="haed_logoimg">
                      </a>
                  </div>
                  <div   id="377j5v51b"   class="head_nav">
                      <div   id="377j5v51b"   class="head_navs">
                          <a href="javascript:;" title="Community" class="head_nava head_nava-template1">Community</a>
                          <div   class="377j5v51b"   id="dropdown-template1" style="display: none;">
                              <div   id="377j5v51b"   class="languagechoose">
                                  <a href="http://www.miracleart.cn/article.html" title="Articles" class="languagechoosea on">Articles</a>
                                  <a href="http://www.miracleart.cn/faq/zt" title="Topics" class="languagechoosea">Topics</a>
                                  <a href="http://www.miracleart.cn/wenda.html" title="Q&A" class="languagechoosea">Q&A</a>
                              </div>
                          </div>
                      </div>
      
                      <div   id="377j5v51b"   class="head_navs">
                          <a href="javascript:;" title="Learn" class="head_nava head_nava-template1_1">Learn</a>
                          <div   class="377j5v51b"   id="dropdown-template1_1" style="display: none;">
                              <div   id="377j5v51b"   class="languagechoose">
                                  <a href="http://www.miracleart.cn/course.html" title="Course" class="languagechoosea on">Course</a>
                                  <a href="http://www.miracleart.cn/dic/" title="Programming Dictionary" class="languagechoosea">Programming Dictionary</a>
                              </div>
                          </div>
                      </div>
      
                      <div   id="377j5v51b"   class="head_navs">
                          <a href="javascript:;" title="Tools Library" class="head_nava head_nava-template1_2">Tools Library</a>
                          <div   class="377j5v51b"   id="dropdown-template1_2" style="display: none;">
                              <div   id="377j5v51b"   class="languagechoose">
                                  <a href="http://www.miracleart.cn/toolset/development-tools" title="Development tools" class="languagechoosea on">Development tools</a>
                                  <a href="http://www.miracleart.cn/toolset/website-source-code" title="Website Source Code" class="languagechoosea">Website Source Code</a>
                                  <a href="http://www.miracleart.cn/toolset/php-libraries" title="PHP Libraries" class="languagechoosea">PHP Libraries</a>
                                  <a href="http://www.miracleart.cn/toolset/js-special-effects" title="JS special effects" class="languagechoosea on">JS special effects</a>
                                  <a href="http://www.miracleart.cn/toolset/website-materials" title="Website Materials" class="languagechoosea on">Website Materials</a>
                                  <a href="http://www.miracleart.cn/toolset/extension-plug-ins" title="Extension plug-ins" class="languagechoosea on">Extension plug-ins</a>
                              </div>
                          </div>
                      </div>
      
                      <div   id="377j5v51b"   class="head_navs">
                          <a href="http://www.miracleart.cn/ai" title="AI Tools" class="head_nava head_nava-template1_3">AI Tools</a>
                      </div>
      
                      <div   id="377j5v51b"   class="head_navs">
                          <a href="javascript:;" title="Leisure" class="head_nava head_nava-template1_3">Leisure</a>
                          <div   class="377j5v51b"   id="dropdown-template1_3" style="display: none;">
                              <div   id="377j5v51b"   class="languagechoose">
                                  <a href="http://www.miracleart.cn/game" title="Game Download" class="languagechoosea on">Game Download</a>
                                  <a href="http://www.miracleart.cn/mobile-game-tutorial/" title="Game Tutorials" class="languagechoosea">Game Tutorials</a>
      
                              </div>
                          </div>
                      </div>
                  </div>
              </div>
                          <div   id="377j5v51b"   class="head_search">
                      <input id="key_words"  onkeydown="if (event.keyCode == 13) searchs('en')" class="search-input" type="text" autocomplete="off" name="keywords" required="required" placeholder="Block,address,transaction,news" value="">
                      <a href="javascript:;" title="search"  onclick="searchs('en')"><img src="/static/imghw/find.png" alt="search"></a>
                  </div>
                      <div   id="377j5v51b"   class="head_right">
                  <div   id="377j5v51b"   class="haed_language">
                      <a href="javascript:;" class="layui-btn haed_language_btn">English<i class="layui-icon layui-icon-triangle-d"></i></a>
                      <div   class="377j5v51b"   id="dropdown-template" style="display: none;">
                          <div   id="377j5v51b"   class="languagechoose">
                                                      <a href="javascript:setlang('zh-cn');" title="簡體中文" class="languagechoosea">簡體中文</a>
                                                      <a href="javascript:;" title="English" class="languagechoosea">English</a>
                                                      <a href="javascript:setlang('zh-tw');" title="繁體中文" class="languagechoosea">繁體中文</a>
                                                      <a href="javascript:setlang('ja');" title="日本語" class="languagechoosea">日本語</a>
                                                      <a href="javascript:setlang('ko');" title="???" class="languagechoosea">???</a>
                                                      <a href="javascript:setlang('ms');" title="Melayu" class="languagechoosea">Melayu</a>
                                                      <a href="javascript:setlang('fr');" title="Fran?ais" class="languagechoosea">Fran?ais</a>
                                                      <a href="javascript:setlang('de');" title="Deutsch" class="languagechoosea">Deutsch</a>
                                                  </div>
                      </div>
                  </div>
                  <span id="377j5v51b"    class="head_right_line"></span>
                                  <div style="display: block;" id="login" class="haed_login ">
                          <a href="javascript:;"  title="Login" class="haed_logina ">Login</a>
                      </div>
                      <div style="display: block;" id="reg" class="head_signup login">
                          <a href="javascript:;"  title="singup" class="head_signupa">singup</a>
                      </div>
                  
              </div>
          </div>
      </header>
      
      	
      	<main>
      		<div   id="377j5v51b"   class="Article_Details_main">
      			<div   id="377j5v51b"   class="Article_Details_main1">
      							<div   id="377j5v51b"   class="Article_Details_main1L">
      					<div   id="377j5v51b"   class="Article_Details_main1Lmain" id="Article_Details_main1Lmain">
      						<div   id="377j5v51b"   class="Article_Details_main1L1">Table of Contents</div>
      						<div   id="377j5v51b"   class="Article_Details_main1L2" id="Article_Details_main1L2">
      							<!-- 左側(cè)懸浮,文章定位標(biāo)題1 id="Article_Details_main1L2s_1"-->
      															<div   id="377j5v51b"   class="Article_Details_main1L2s ">
      									<a href="#Create-a-new-Rails-application" title="Create a new Rails application" >Create a new Rails application</a>
      								</div>
      																<div   id="377j5v51b"   class="Article_Details_main1L2s ">
      									<a href="#Open-the-project-using-VSCode-or-your-favorite-editor" title="Open the project using VSCode or your favorite editor" >Open the project using VSCode or your favorite editor</a>
      								</div>
      																<div   id="377j5v51b"   class="Article_Details_main1L2s ">
      									<a href="#Generate-a-test-page-using-the-code-pages-code-controller-and-the-code-html-test-code-code-html-test-code-code-html-test-code-and-code-html-test-code-actions" title="Generate a test page using the <code>pages</code> controller and the <code>html_test_1</code>, <code>html_test_2</code>, <code>html_test_3</code> and <code>html_test_4</code> actions" >Generate a test page using the <code>pages</code> controller and the <code>html_test_1</code>, <code>html_test_2</code>, <code>html_test_3</code> and <code>html_test_4</code> actions</a>
      								</div>
      																<div   id="377j5v51b"   class="Article_Details_main1L2s ">
      									<a href="#Use-VSCode-to-open-the-code-config-routes-rb-code-file" title="Use VSCode to open the <code>config/routes.rb</code> file" >Use VSCode to open the <code>config/routes.rb</code> file</a>
      								</div>
      																<div   id="377j5v51b"   class="Article_Details_main1L2s ">
      									<a href="#Show-Rails-routes" title="Show Rails routes" >Show Rails routes</a>
      								</div>
      																<div   id="377j5v51b"   class="Article_Details_main1L2s ">
      									<a href="#We-will-create-four-pages-with-HTML-content-to-test-CSS-styles" title="We will create four pages with HTML content to test CSS styles. " >We will create four pages with HTML content to test CSS styles. </a>
      								</div>
      																<div   id="377j5v51b"   class="Article_Details_main1L2s ">
      									<a href="#Insert-the-content-of-the-code-html-test-code-page" title="Insert the content of the <code>html_test_3</code> page" >Insert the content of the <code>html_test_3</code> page</a>
      								</div>
      														</div>
      					</div>
      				</div>
      							<div   id="377j5v51b"   class="Article_Details_main1M">
      					<div   id="377j5v51b"   class="phpgenera_Details_mainL1">
      						<a href="http://www.miracleart.cn/" title="Home"
      							class="phpgenera_Details_mainL1a">Home</a>
      						<img src="/static/imghw/top_right.png" alt="" />
      												<a href="http://www.miracleart.cn/web-designer.html"
      							class="phpgenera_Details_mainL1a">Web Front-end</a>
      						<img src="/static/imghw/top_right.png" alt="" />
      												<a href="http://www.miracleart.cn/css-tutorial.html"
      							class="phpgenera_Details_mainL1a">CSS Tutorial</a>
      						<img src="/static/imghw/top_right.png" alt="" />
      						<span>Fast Ruby on Rails Frontend Using Tailwind as a Classless CSS Frameworks</span>
      					</div>
      					
      					<div   id="377j5v51b"   class="Articlelist_txts">
      						<div   id="377j5v51b"   class="Articlelist_txts_info">
      							<h1 class="Articlelist_txts_title">Fast Ruby on Rails Frontend Using Tailwind as a Classless CSS Frameworks</h1>
      							<div   id="377j5v51b"   class="Articlelist_txts_info_head">
      								<div   id="377j5v51b"   class="author_info">
      									<a href="http://www.miracleart.cn/member/1468492.html"  class="author_avatar">
      									<img class="lazy"  data-src="https://img.php.cn/upload/avatar/000/000/001/66ea8147b1057383.png" src="/static/imghw/default1.png" alt="Mary-Kate Olsen">
      									</a>
      									<div   id="377j5v51b"   class="author_detail">
      																			<a href="http://www.miracleart.cn/member/1468492.html" class="author_name">Mary-Kate Olsen</a>
                                      										</div>
      								</div>
                      			</div>
      							<span id="377j5v51b"    class="Articlelist_txts_time">Jan 15, 2025 am	 10:44 AM</span>
      														
      						</div>
      					</div>
      					<hr />
      					<div   id="377j5v51b"   class="article_main php-article">
      						<div   id="377j5v51b"   class="article-list-left detail-content-wrap content">
      						<ins class="adsbygoogle"
      							style="display:block; text-align:center;"
      							data-ad-layout="in-article"
      							data-ad-format="fluid"
      							data-ad-client="ca-pub-5902227090019525"
      							data-ad-slot="3461856641">
      						</ins>
      						
      
      					<p><img src="/static/imghw/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/173690908826214.jpg" class="lazy" alt="Ruby on Rails  Frontend Rápido Usando Tailwind como um Frameworks CSS Classless"></p>
      <blockquote>
      <p>This article is very similar to the previous articles in this series, but this time we will use the Tailwind framework as a classless CSS framework. </p>
      </blockquote>
      <h3 id="Create-a-new-Rails-application">Create a new Rails application</h3>
      <ul>
      <li>
      <code>rails serve</code> The <code>time</code> before the command is used to display the total time of command execution. The following example took 47 seconds. </li>
      </ul>
      <pre class="brush:php;toolbar:false"><code>$ rails -v
      Rails 8.0.0
      
      $ time rails new classless-css-tailwind
      ...
      real    0m47.500s
      user    0m33.052s
      sys     0m4.249s</code></pre>
      <p>Rails 8 uses Propshaft as the resource pipeline library and Importmap as the JavaScript library by default based on its "No Build" philosophy. Importmap does not perform any JavaScript processing. </p>
      <h3 id="Open-the-project-using-VSCode-or-your-favorite-editor">Open the project using VSCode or your favorite editor</h3>
      <pre class="brush:php;toolbar:false"><code>$ rails -v
      Rails 8.0.0
      
      $ time rails new classless-css-tailwind
      ...
      real    0m47.500s
      user    0m33.052s
      sys     0m4.249s</code></pre>
      <h3>Understanding Rails default layout <code>app/views/layouts/application.html.erb</code>
      </h3>
      <details><summary>Expand…</summary>- Following the convention over configuration (CoC) principle, Rails uses `application.html.erb` as the default layout to render all pages;
      - The original file content in Rails 8 should be the same or similar to:
      <pre class="brush:php;toolbar:false"><code>$ cd classless-css-tailwind && code .</code></pre>
      <ul>
      The <li>
      <code><head></code> tag contains important structural elements for page rendering and proper functioning. <code><head></code> Used to contain metadata and important resources that help configure the page's behavior (using JavaScript), appearance (using CSS), association with other systems and services, and security settings such as CSRF and CSP protection; </li>
      The main content of the <li> page will be rendered within the <code><body></code> via the ERB tag. This tag serves as an integration point for containing view content dynamically rendered by Rails; </li>
      </ul>
      </details>
      <h3 id="Generate-a-test-page-using-the-code-pages-code-controller-and-the-code-html-test-code-code-html-test-code-code-html-test-code-and-code-html-test-code-actions">Generate a test page using the <code>pages</code> controller and the <code>html_test_1</code>, <code>html_test_2</code>, <code>html_test_3</code> and <code>html_test_4</code> actions</h3>
      <details><summary>Expand…</summary>
      ```bash
      $ rails g controller pages html_test_1 html_test_2 html_test_3 html_test_4
            create app/controllers/pages_controller.rb
             route get "pages/html_test_1"
                    get "pages/html_test_2"
                    get "pages/html_test_3"
                    get "pages/html_test_4"
            invokeerb
            create app/views/pages
            create app/views/pages/html_test_1.html.erb
            create app/views/pages/html_test_2.html.erb
            create app/views/pages/html_test_3.html.erb
            create app/views/pages/html_test_4.html.erb
            invoke helper
            create app/helpers/pages_helper.rb
      ```
      <ul>
      <li>Since routes are also added when creating controllers and actions, any created actions can be accessed via the following link: </li>
      <li><code>localhost:3000/pages/html_test_1</code></li>
      <li><code>localhost:3000/pages/html_test_2</code></li>
      <li><code>localhost:3000/pages/html_test_3</code></li>
      <li><code>localhost:3000/pages/html_test_4</code></li>
      </ul>
      <h3 id="Use-VSCode-to-open-the-code-config-routes-rb-code-file">Use VSCode to open the <code>config/routes.rb</code> file</h3>
      <ul>
      <li>Add the following lines at the end of the file to direct the page root to the <code>pages</code> controller and <code>html_test_1</code> action created earlier. This way, when accessing your website or system, the first page displayed will be the <code>pages</code> controller's <code>html_test_1</code> page. Otherwise, Rails' default page will be displayed. </li>
      </ul>
      <pre class='brush:php;toolbar:false;'>
          <title></title><meta content="width=device-width,initial-scale=1" name="viewport"></meta><meta content="yes" name="apple-mobile-web-app-capable"></meta><meta content="yes" name="mobile-web-app-capable"></meta><link href="/icon.png" rel="icon" type="image/png"></link><link href="/icon.svg" rel="icon" type="image/svg+xml"></link><link href="/icon.png" rel="apple-touch-icon"></link></pre>
      <ul>
      <li>If the <code>--skip-routes</code> parameter is passed when creating the controller, you can ignore adding routes for the created action.The complete command will become <code>rails g controller pages html_test_1 html_test_2 html_test_3 html_test_4 --skip-routes</code></li>
      </ul>
      </details>
      <h3 id="Show-Rails-routes">Show Rails routes</h3>
      <details><summary>Expand…</summary>Using the terminal, you can specify a controller (using `-c`) to display the route, for example the `pages` controller:
      <pre class="brush:php;toolbar:false"><code>$ rails -v
      Rails 8.0.0
      
      $ time rails new classless-css-tailwind
      ...
      real    0m47.500s
      user    0m33.052s
      sys     0m4.249s</code></pre>
      <p>Alternatively, you can use the following command to display all routes: </p>
      <pre class="brush:php;toolbar:false"><code>$ cd classless-css-tailwind && code .</code></pre>
      <ul>
      <li>You can also access the route through your browser using the address <code>http://127.0.0.1:3000/rails/info/routes</code>. Don't forget to start the development server using <code>bin/dev</code> or standard <code>rails server</code> in the project root. The development server "listens" for changes to JavaScript files and CSS files to perform the necessary processing to serve them to the user. </li>
      <li>In order for changes to these files to be immediately executed and viewed in the browser, a gem like Rails Live Reload needs to be installed. </li>
      </ul>
      </details>
      <h3 id="We-will-create-four-pages-with-HTML-content-to-test-CSS-styles">We will create four pages with HTML content to test CSS styles. </h3>
      <p>Ruby on Rails uses the MVC (Model-View-Controller) architecture by default to initiate project organization. Most of the code is organized in the following folders: </p><ul>
      <li>Code related to domain/business logic and data should be kept in the <code>app/models</code> folder; </li>
      <li>Display related code (HTML, JSON, XML, etc.) will be located in the <code>app/views</code> folder; </li>
      <li>Code related to the request lifecycle will be located in the <code>app/controllers</code> folder; </li>
      </ul>
      <h3 id="Insert-the-content-of-the-code-html-test-code-page">Insert the content of the <code>html_test_1</code> page</h3>
      <details><summary>Expand…</summary>- Visit the link https://github.com/dbohdan/classless-css/blob/master/screenshot-page.html and copy all the content inside the `<main>` tag, As shown below
      <pre class="brush:php;toolbar:false"><code>$ rails -v
      Rails 8.0.0
      
      $ time rails new classless-css-tailwind
      ...
      real    0m47.500s
      user    0m33.052s
      sys     0m4.249s</code></pre>
      </details>
      <h3 id="Insert-the-content-of-the-code-html-test-code-page">Insert the content of the <code>html_test_2</code> page</h3>
      <details><summary>Expand…</summary>- Visit the link https://gist.github.com/tommaitland/5865229 and copy all content inside the `<form>` tag as shown below
      <pre class="brush:php;toolbar:false"><code>$ cd classless-css-tailwind && code .</code></pre>
      <legend>A Sample Form Legend</legend> <label for="name">Name: </label> <label for="email">Email: </label> <label>Button: </label> <label>Single Checkbox: </label> <fieldset><legend>Group of Checkboxes: </legend> <label>Checkbox 1: </label> <label>Checkbox 2: </label> <label>Checkbox 3: </label> <label>Checkbox 4: </label> </fieldset><label>Color: </label> <label>Date: </label> <label>Date, Time (Local): </label> <label>File: </label> <label>Image: </label> <label>Month: </label> <label>Number: </label> <label>Password: </label> <label>Single Radio: </label> <fieldset><legend>Group of Radios: </legend> <label>Radio 1: </label> <label>Radio 2: </label> <label>Radio 3: </label> <label>Radio 4: </label> </fieldset><label>Range: </label> <label>Reset: </label> <label>Time: </label> <label>Search: </label> <label>Tel: </label> <label>Text: </label> <label>URL: </label> <label>Week: </label> This is a button! <label>Select 1: </label> TestTest<label>Select 2: </label> TestTest<label>Select Multiple: </label> TestTest<label>Select Groups: </label> <optgroup label="First Group">TestTest</optgroup><optgroup label="Second Group">TestTest</optgroup><optgroup label="Third Group">TestTest</optgroup><fieldset><legend> Datalist: </legend> <datalist>- Open the `app/views/pages/html_test_2.html.erb` file and paste the content copied above
      </datalist></fieldset></details>
      <h3 id="Insert-the-content-of-the-code-html-test-code-page">Insert the content of the <code>html_test_3</code> page</h3>
      <details><summary>Expand...</summary>Visit the link https://github.com/cbracco/html5-test-page/blob/master/index.html and copy all the content after the `<div>` tag, where Contains the text `<div>`
      <pre class='brush:php;toolbar:false;'>
          <title></title><meta content="width=device-width,initial-scale=1" name="viewport"></meta><meta content="yes" name="apple-mobile-web-app-capable"></meta><meta content="yes" name="mobile-web-app-capable"></meta><link href="/icon.png" rel="icon" type="image/png"></link><link href="/icon.svg" rel="icon" type="image/svg+xml"></link><link href="/icon.png" rel="apple-touch-icon"></link></pre></details><p>The above is the detailed content of Fast Ruby on Rails Frontend Using Tailwind as a Classless CSS Frameworks. For more information, please follow other related articles on the PHP Chinese website!</p>
      
      
      						</div>
      					</div>
      					<div   id="377j5v51b"   class="wzconShengming_sp">
      						<div   id="377j5v51b"   class="bzsmdiv_sp">Statement of this Website</div>
      						<div>The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn</div>
      					</div>
      				</div>
      
      				<ins class="adsbygoogle"
           style="display:block"
           data-ad-format="autorelaxed"
           data-ad-client="ca-pub-5902227090019525"
           data-ad-slot="2507867629"></ins>
      
      
      
      				<div   id="377j5v51b"   class="AI_ToolDetails_main4sR">
      
      
      				<ins class="adsbygoogle"
              style="display:block"
              data-ad-client="ca-pub-5902227090019525"
              data-ad-slot="3653428331"
              data-ad-format="auto"
              data-full-width-responsive="true"></ins>
          
      
      
      					<!-- <div   id="377j5v51b"   class="phpgenera_Details_mainR4">
      						<div   id="377j5v51b"   class="phpmain1_4R_readrank">
      							<div   id="377j5v51b"   class="phpmain1_4R_readrank_top">
      								<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      									onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      									src="/static/imghw/hotarticle2.png" alt="" />
      								<h2>Hot Article</h2>
      							</div>
      							<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottom">
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/faq/1796821119.html" title="Guide: Stellar Blade Save File Location/Save File Lost/Not Saving" class="phpgenera_Details_mainR4_bottom_title">Guide: Stellar Blade Save File Location/Save File Lost/Not Saving</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<span>4 weeks ago</span>
      										<span>By DDD</span>
      									</div>
      								</div>
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/faq/1796827210.html" title="Oguri Cap Build Guide | A Pretty Derby Musume" class="phpgenera_Details_mainR4_bottom_title">Oguri Cap Build Guide | A Pretty Derby Musume</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<span>2 weeks ago</span>
      										<span>By Jack chen</span>
      									</div>
      								</div>
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/faq/1796828723.html" title="Agnes Tachyon Build Guide | A Pretty Derby Musume" class="phpgenera_Details_mainR4_bottom_title">Agnes Tachyon Build Guide | A Pretty Derby Musume</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<span>1 weeks ago</span>
      										<span>By Jack chen</span>
      									</div>
      								</div>
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/faq/1796821436.html" title="Dune: Awakening - Advanced Planetologist Quest Walkthrough" class="phpgenera_Details_mainR4_bottom_title">Dune: Awakening - Advanced Planetologist Quest Walkthrough</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<span>4 weeks ago</span>
      										<span>By Jack chen</span>
      									</div>
      								</div>
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/faq/1796821278.html" title="Date Everything: Dirk And Harper Relationship Guide" class="phpgenera_Details_mainR4_bottom_title">Date Everything: Dirk And Harper Relationship Guide</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<span>4 weeks ago</span>
      										<span>By Jack chen</span>
      									</div>
      								</div>
      														</div>
      							<div   id="377j5v51b"   class="phpgenera_Details_mainR3_more">
      								<a href="http://www.miracleart.cn/article.html">Show More</a>
      							</div>
      						</div>
      					</div> -->
      
      
      											<div   id="377j5v51b"   class="phpgenera_Details_mainR3">
      							<div   id="377j5v51b"   class="phpmain1_4R_readrank">
      								<div   id="377j5v51b"   class="phpmain1_4R_readrank_top">
      									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      										onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      										src="/static/imghw/hottools2.png" alt="" />
      									<h2>Hot AI Tools</h2>
      								</div>
      								<div   id="377j5v51b"   class="phpgenera_Details_mainR3_bottom">
      																		<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
      											<a href="http://www.miracleart.cn/ai/undress-ai-tool" title="Undress AI Tool" class="phpmain_tab2_mids_top_img">
      												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													class="lazy"  data-src="https://img.php.cn/upload/ai_manual/001/246/273/173410641626608.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="Undress AI Tool" />
      											</a>
      											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
      												<a href="http://www.miracleart.cn/ai/undress-ai-tool" title="Undress AI Tool" class="phpmain_tab2_mids_title">
      													<h3>Undress AI Tool</h3>
      												</a>
      												<p>Undress images for free</p>
      											</div>
      										</div>
      																		<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
      											<a href="http://www.miracleart.cn/ai/undresserai-undress" title="Undresser.AI Undress" class="phpmain_tab2_mids_top_img">
      												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													class="lazy"  data-src="https://img.php.cn/upload/ai_manual/001/246/273/173411540686492.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="Undresser.AI Undress" />
      											</a>
      											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
      												<a href="http://www.miracleart.cn/ai/undresserai-undress" title="Undresser.AI Undress" class="phpmain_tab2_mids_title">
      													<h3>Undresser.AI Undress</h3>
      												</a>
      												<p>AI-powered app for creating realistic nude photos</p>
      											</div>
      										</div>
      																		<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
      											<a href="http://www.miracleart.cn/ai/ai-clothes-remover" title="AI Clothes Remover" class="phpmain_tab2_mids_top_img">
      												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													class="lazy"  data-src="https://img.php.cn/upload/ai_manual/001/246/273/173411552797167.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="AI Clothes Remover" />
      											</a>
      											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
      												<a href="http://www.miracleart.cn/ai/ai-clothes-remover" title="AI Clothes Remover" class="phpmain_tab2_mids_title">
      													<h3>AI Clothes Remover</h3>
      												</a>
      												<p>Online AI tool for removing clothes from photos.</p>
      											</div>
      										</div>
      																		<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
      											<a href="http://www.miracleart.cn/ai/clothoffio" title="Clothoff.io" class="phpmain_tab2_mids_top_img">
      												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													class="lazy"  data-src="https://img.php.cn/upload/ai_manual/001/246/273/173411529149311.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="Clothoff.io" />
      											</a>
      											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
      												<a href="http://www.miracleart.cn/ai/clothoffio" title="Clothoff.io" class="phpmain_tab2_mids_title">
      													<h3>Clothoff.io</h3>
      												</a>
      												<p>AI clothes remover</p>
      											</div>
      										</div>
      																		<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
      											<a href="http://www.miracleart.cn/ai/video-swap" title="Video Face Swap" class="phpmain_tab2_mids_top_img">
      												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													class="lazy"  data-src="https://img.php.cn/upload/ai_manual/001/246/273/173414504068133.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="Video Face Swap" />
      											</a>
      											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
      												<a href="http://www.miracleart.cn/ai/video-swap" title="Video Face Swap" class="phpmain_tab2_mids_title">
      													<h3>Video Face Swap</h3>
      												</a>
      												<p>Swap faces in any video effortlessly with our completely free AI face swap tool!</p>
      											</div>
      										</div>
      																</div>
      								<div   id="377j5v51b"   class="phpgenera_Details_mainR3_more">
      									<a href="http://www.miracleart.cn/ai">Show More</a>
      								</div>
      							</div>
      						</div>
      					
      
      
      					<div   id="377j5v51b"   class="phpgenera_Details_mainR4">
      						<div   id="377j5v51b"   class="phpmain1_4R_readrank">
      							<div   id="377j5v51b"   class="phpmain1_4R_readrank_top">
      								<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      									onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      									src="/static/imghw/hotarticle2.png" alt="" />
      								<h2>Hot Article</h2>
      							</div>
      							<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottom">
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/faq/1796821119.html" title="Guide: Stellar Blade Save File Location/Save File Lost/Not Saving" class="phpgenera_Details_mainR4_bottom_title">Guide: Stellar Blade Save File Location/Save File Lost/Not Saving</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<span>4 weeks ago</span>
      										<span>By DDD</span>
      									</div>
      								</div>
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/faq/1796827210.html" title="Oguri Cap Build Guide | A Pretty Derby Musume" class="phpgenera_Details_mainR4_bottom_title">Oguri Cap Build Guide | A Pretty Derby Musume</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<span>2 weeks ago</span>
      										<span>By Jack chen</span>
      									</div>
      								</div>
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/faq/1796828723.html" title="Agnes Tachyon Build Guide | A Pretty Derby Musume" class="phpgenera_Details_mainR4_bottom_title">Agnes Tachyon Build Guide | A Pretty Derby Musume</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<span>1 weeks ago</span>
      										<span>By Jack chen</span>
      									</div>
      								</div>
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/faq/1796821436.html" title="Dune: Awakening - Advanced Planetologist Quest Walkthrough" class="phpgenera_Details_mainR4_bottom_title">Dune: Awakening - Advanced Planetologist Quest Walkthrough</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<span>4 weeks ago</span>
      										<span>By Jack chen</span>
      									</div>
      								</div>
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/faq/1796821278.html" title="Date Everything: Dirk And Harper Relationship Guide" class="phpgenera_Details_mainR4_bottom_title">Date Everything: Dirk And Harper Relationship Guide</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<span>4 weeks ago</span>
      										<span>By Jack chen</span>
      									</div>
      								</div>
      														</div>
      							<div   id="377j5v51b"   class="phpgenera_Details_mainR3_more">
      								<a href="http://www.miracleart.cn/article.html">Show More</a>
      							</div>
      						</div>
      					</div>
      
      
      											<div   id="377j5v51b"   class="phpgenera_Details_mainR3">
      							<div   id="377j5v51b"   class="phpmain1_4R_readrank">
      								<div   id="377j5v51b"   class="phpmain1_4R_readrank_top">
      									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      										onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      										src="/static/imghw/hottools2.png" alt="" />
      									<h2>Hot Tools</h2>
      								</div>
      								<div   id="377j5v51b"   class="phpgenera_Details_mainR3_bottom">
      																		<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
      											<a href="http://www.miracleart.cn/toolset/development-tools/92" title="Notepad++7.3.1" class="phpmain_tab2_mids_top_img">
      												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													class="lazy"  data-src="https://img.php.cn/upload/manual/000/000/001/58ab96f0f39f7357.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="Notepad++7.3.1" />
      											</a>
      											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
      												<a href="http://www.miracleart.cn/toolset/development-tools/92" title="Notepad++7.3.1" class="phpmain_tab2_mids_title">
      													<h3>Notepad++7.3.1</h3>
      												</a>
      												<p>Easy-to-use and free code editor</p>
      											</div>
      										</div>
      																			<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
      											<a href="http://www.miracleart.cn/toolset/development-tools/93" title="SublimeText3 Chinese version" class="phpmain_tab2_mids_top_img">
      												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													class="lazy"  data-src="https://img.php.cn/upload/manual/000/000/001/58ab97a3baad9677.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="SublimeText3 Chinese version" />
      											</a>
      											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
      												<a href="http://www.miracleart.cn/toolset/development-tools/93" title="SublimeText3 Chinese version" class="phpmain_tab2_mids_title">
      													<h3>SublimeText3 Chinese version</h3>
      												</a>
      												<p>Chinese version, very easy to use</p>
      											</div>
      										</div>
      																			<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
      											<a href="http://www.miracleart.cn/toolset/development-tools/121" title="Zend Studio 13.0.1" class="phpmain_tab2_mids_top_img">
      												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													class="lazy"  data-src="https://img.php.cn/upload/manual/000/000/001/58ab97ecd1ab2670.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="Zend Studio 13.0.1" />
      											</a>
      											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
      												<a href="http://www.miracleart.cn/toolset/development-tools/121" title="Zend Studio 13.0.1" class="phpmain_tab2_mids_title">
      													<h3>Zend Studio 13.0.1</h3>
      												</a>
      												<p>Powerful PHP integrated development environment</p>
      											</div>
      										</div>
      																			<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
      											<a href="http://www.miracleart.cn/toolset/development-tools/469" title="Dreamweaver CS6" class="phpmain_tab2_mids_top_img">
      												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													class="lazy"  data-src="https://img.php.cn/upload/manual/000/000/001/58d0e0fc74683535.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="Dreamweaver CS6" />
      											</a>
      											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
      												<a href="http://www.miracleart.cn/toolset/development-tools/469" title="Dreamweaver CS6" class="phpmain_tab2_mids_title">
      													<h3>Dreamweaver CS6</h3>
      												</a>
      												<p>Visual web development tools</p>
      											</div>
      										</div>
      																			<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
      											<a href="http://www.miracleart.cn/toolset/development-tools/500" title="SublimeText3 Mac version" class="phpmain_tab2_mids_top_img">
      												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													class="lazy"  data-src="https://img.php.cn/upload/manual/000/000/001/58d34035e2757995.png?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="SublimeText3 Mac version" />
      											</a>
      											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
      												<a href="http://www.miracleart.cn/toolset/development-tools/500" title="SublimeText3 Mac version" class="phpmain_tab2_mids_title">
      													<h3>SublimeText3 Mac version</h3>
      												</a>
      												<p>God-level code editing software (SublimeText3)</p>
      											</div>
      										</div>
      																	</div>
      								<div   id="377j5v51b"   class="phpgenera_Details_mainR3_more">
      									<a href="http://www.miracleart.cn/ai">Show More</a>
      								</div>
      							</div>
      						</div>
      										
      
      					
      					<div   id="377j5v51b"   class="phpgenera_Details_mainR4">
      						<div   id="377j5v51b"   class="phpmain1_4R_readrank">
      							<div   id="377j5v51b"   class="phpmain1_4R_readrank_top">
      								<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      									onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      									src="/static/imghw/hotarticle2.png" alt="" />
      								<h2>Hot Topics</h2>
      							</div>
      							<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottom">
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/faq/gmailyxdlrkzn" title="Where is the login entrance for gmail email?" class="phpgenera_Details_mainR4_bottom_title">Where is the login entrance for gmail email?</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
      											<img src="/static/imghw/eyess.png" alt="" />
      											<span>8637</span>
      										</div>
      										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
      											<img src="/static/imghw/tiezi.png" alt="" />
      											<span>17</span>
      										</div>
      									</div>
      								</div>
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/faq/java-tutorial" title="Java Tutorial" class="phpgenera_Details_mainR4_bottom_title">Java Tutorial</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
      											<img src="/static/imghw/eyess.png" alt="" />
      											<span>1783</span>
      										</div>
      										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
      											<img src="/static/imghw/tiezi.png" alt="" />
      											<span>16</span>
      										</div>
      									</div>
      								</div>
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/faq/cakephp-tutor" title="CakePHP Tutorial" class="phpgenera_Details_mainR4_bottom_title">CakePHP Tutorial</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
      											<img src="/static/imghw/eyess.png" alt="" />
      											<span>1728</span>
      										</div>
      										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
      											<img src="/static/imghw/tiezi.png" alt="" />
      											<span>56</span>
      										</div>
      									</div>
      								</div>
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/faq/laravel-tutori" title="Laravel Tutorial" class="phpgenera_Details_mainR4_bottom_title">Laravel Tutorial</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
      											<img src="/static/imghw/eyess.png" alt="" />
      											<span>1577</span>
      										</div>
      										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
      											<img src="/static/imghw/tiezi.png" alt="" />
      											<span>28</span>
      										</div>
      									</div>
      								</div>
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/faq/php-tutorial" title="PHP Tutorial" class="phpgenera_Details_mainR4_bottom_title">PHP Tutorial</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
      											<img src="/static/imghw/eyess.png" alt="" />
      											<span>1442</span>
      										</div>
      										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
      											<img src="/static/imghw/tiezi.png" alt="" />
      											<span>31</span>
      										</div>
      									</div>
      								</div>
      														</div>
      							<div   id="377j5v51b"   class="phpgenera_Details_mainR3_more">
      								<a href="http://www.miracleart.cn/faq/zt">Show More</a>
      							</div>
      						</div>
      					</div>
      				</div>
      			</div>
      							<div   id="377j5v51b"   class="Article_Details_main2">
      					<div   id="377j5v51b"   class="phpgenera_Details_mainL4">
      						<div   id="377j5v51b"   class="phpmain1_2_top">
      							<a href="javascript:void(0);" class="phpmain1_2_top_title">Related knowledge<img
      									src="/static/imghw/index2_title2.png" alt="" /></a>
      						</div>
      						<div   id="377j5v51b"   class="phpgenera_Details_mainL4_info">
      
      													<div   id="377j5v51b"   class="phphistorical_Version2_mids">
      								<a href="http://www.miracleart.cn/faq/1796823628.html" title="What is 'render-blocking CSS'?" class="phphistorical_Version2_mids_img">
      									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/253/068/175069693197174.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="What is 'render-blocking CSS'?" />
      								</a>
      								<a href="http://www.miracleart.cn/faq/1796823628.html" title="What is 'render-blocking CSS'?" class="phphistorical_Version2_mids_title">What is 'render-blocking CSS'?</a>
      								<span id="377j5v51b"    class="Articlelist_txts_time">Jun 24, 2025 am	 12:42 AM</span>
      								<p class="Articlelist_txts_p">CSS blocks page rendering because browsers view inline and external CSS as key resources by default, especially with imported stylesheets, header large amounts of inline CSS, and unoptimized media query styles. 1. Extract critical CSS and embed it into HTML; 2. Delay loading non-critical CSS through JavaScript; 3. Use media attributes to optimize loading such as print styles; 4. Compress and merge CSS to reduce requests. It is recommended to use tools to extract key CSS, combine rel="preload" asynchronous loading, and use media delayed loading reasonably to avoid excessive splitting and complex script control.</p>
      							</div>
      														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
      								<a href="http://www.miracleart.cn/faq/1796822133.html" title="External vs. Internal CSS: What's the Best Approach?" class="phphistorical_Version2_mids_img">
      									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/253/068/175035152168797.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="External vs. Internal CSS: What's the Best Approach?" />
      								</a>
      								<a href="http://www.miracleart.cn/faq/1796822133.html" title="External vs. Internal CSS: What's the Best Approach?" class="phphistorical_Version2_mids_title">External vs. Internal CSS: What's the Best Approach?</a>
      								<span id="377j5v51b"    class="Articlelist_txts_time">Jun 20, 2025 am	 12:45 AM</span>
      								<p class="Articlelist_txts_p">ThebestapproachforCSSdependsontheproject'sspecificneeds.Forlargerprojects,externalCSSisbetterduetomaintainabilityandreusability;forsmallerprojectsorsingle-pageapplications,internalCSSmightbemoresuitable.It'scrucialtobalanceprojectsize,performanceneed</p>
      							</div>
      														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
      								<a href="http://www.miracleart.cn/faq/1796821588.html" title="Does my CSS must be on lower case?" class="phphistorical_Version2_mids_img">
      									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/253/068/175026415047262.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="Does my CSS must be on lower case?" />
      								</a>
      								<a href="http://www.miracleart.cn/faq/1796821588.html" title="Does my CSS must be on lower case?" class="phphistorical_Version2_mids_title">Does my CSS must be on lower case?</a>
      								<span id="377j5v51b"    class="Articlelist_txts_time">Jun 19, 2025 am	 12:29 AM</span>
      								<p class="Articlelist_txts_p">No,CSSdoesnothavetobeinlowercase.However,usinglowercaseisrecommendedfor:1)Consistencyandreadability,2)Avoidingerrorsinrelatedtechnologies,3)Potentialperformancebenefits,and4)Improvedcollaborationwithinteams.</p>
      							</div>
      														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
      								<a href="http://www.miracleart.cn/faq/1796821998.html" title="CSS Case Sensitivity: Understanding What Matters" class="phphistorical_Version2_mids_img">
      									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/253/068/175034936181156.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="CSS Case Sensitivity: Understanding What Matters" />
      								</a>
      								<a href="http://www.miracleart.cn/faq/1796821998.html" title="CSS Case Sensitivity: Understanding What Matters" class="phphistorical_Version2_mids_title">CSS Case Sensitivity: Understanding What Matters</a>
      								<span id="377j5v51b"    class="Articlelist_txts_time">Jun 20, 2025 am	 12:09 AM</span>
      								<p class="Articlelist_txts_p">CSSismostlycase-insensitive,butURLsandfontfamilynamesarecase-sensitive.1)Propertiesandvalueslikecolor:red;arenotcase-sensitive.2)URLsmustmatchtheserver'scase,e.g.,/images/Logo.png.3)Fontfamilynameslike'OpenSans'mustbeexact.</p>
      							</div>
      														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
      								<a href="http://www.miracleart.cn/faq/1796828180.html" title="What is Autoprefixer and how does it work?" class="phphistorical_Version2_mids_img">
      									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/253/068/175139012130913.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="What is Autoprefixer and how does it work?" />
      								</a>
      								<a href="http://www.miracleart.cn/faq/1796828180.html" title="What is Autoprefixer and how does it work?" class="phphistorical_Version2_mids_title">What is Autoprefixer and how does it work?</a>
      								<span id="377j5v51b"    class="Articlelist_txts_time">Jul 02, 2025 am	 01:15 AM</span>
      								<p class="Articlelist_txts_p">Autoprefixer is a tool that automatically adds vendor prefixes to CSS attributes based on the target browser scope. 1. It solves the problem of manually maintaining prefixes with errors; 2. Work through the PostCSS plug-in form, parse CSS, analyze attributes that need to be prefixed, and generate code according to configuration; 3. The usage steps include installing plug-ins, setting browserslist, and enabling them in the build process; 4. Notes include not manually adding prefixes, keeping configuration updates, prefixes not all attributes, and it is recommended to use them with the preprocessor.</p>
      							</div>
      														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
      								<a href="http://www.miracleart.cn/faq/1796821606.html" title="What are CSS counters?" class="phphistorical_Version2_mids_img">
      									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/253/068/175026444127039.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="What are CSS counters?" />
      								</a>
      								<a href="http://www.miracleart.cn/faq/1796821606.html" title="What are CSS counters?" class="phphistorical_Version2_mids_title">What are CSS counters?</a>
      								<span id="377j5v51b"    class="Articlelist_txts_time">Jun 19, 2025 am	 12:34 AM</span>
      								<p class="Articlelist_txts_p">CSScounterscanautomaticallynumbersectionsandlists.1)Usecounter-resettoinitialize,counter-incrementtoincrease,andcounter()orcounters()todisplayvalues.2)CombinewithJavaScriptfordynamiccontenttoensureaccurateupdates.</p>
      							</div>
      														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
      								<a href="http://www.miracleart.cn/faq/1796821580.html" title="CSS: When Does Case Matter (and When Doesn't)?" class="phphistorical_Version2_mids_img">
      									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/253/068/175026403168895.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="CSS: When Does Case Matter (and When Doesn't)?" />
      								</a>
      								<a href="http://www.miracleart.cn/faq/1796821580.html" title="CSS: When Does Case Matter (and When Doesn't)?" class="phphistorical_Version2_mids_title">CSS: When Does Case Matter (and When Doesn't)?</a>
      								<span id="377j5v51b"    class="Articlelist_txts_time">Jun 19, 2025 am	 12:27 AM</span>
      								<p class="Articlelist_txts_p">In CSS, selector and attribute names are case-sensitive, while values, named colors, URLs, and custom attributes are case-sensitive. 1. The selector and attribute names are case-insensitive, such as background-color and background-Color are the same. 2. The hexadecimal color in the value is case-sensitive, but the named color is case-sensitive, such as red and Red is invalid. 3. URLs are case sensitive and may cause file loading problems. 4. Custom properties (variables) are case sensitive, and you need to pay attention to the consistency of case when using them.</p>
      							</div>
      														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
      								<a href="http://www.miracleart.cn/faq/1796827610.html" title="What is the conic-gradient() function?" class="phphistorical_Version2_mids_img">
      									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/253/068/175130377175874.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="What is the conic-gradient() function?" />
      								</a>
      								<a href="http://www.miracleart.cn/faq/1796827610.html" title="What is the conic-gradient() function?" class="phphistorical_Version2_mids_title">What is the conic-gradient() function?</a>
      								<span id="377j5v51b"    class="Articlelist_txts_time">Jul 01, 2025 am	 01:16 AM</span>
      								<p class="Articlelist_txts_p">Theconic-gradient()functioninCSScreatescirculargradientsthatrotatecolorstopsaroundacentralpoint.1.Itisidealforpiecharts,progressindicators,colorwheels,anddecorativebackgrounds.2.Itworksbydefiningcolorstopsatspecificangles,optionallystartingfromadefin</p>
      							</div>
      													</div>
      
      													<a href="http://www.miracleart.cn/web-designer.html" class="phpgenera_Details_mainL4_botton">
      								<span>See all articles</span>
      								<img src="/static/imghw/down_right.png" alt="" />
      							</a>
      											</div>
      				</div>
      					</div>
      	</main>
      	<footer>
          <div   id="377j5v51b"   class="footer">
              <div   id="377j5v51b"   class="footertop">
                  <img src="/static/imghw/logo.png" alt="">
                  <p>Public welfare online PHP training,Help PHP learners grow quickly!</p>
              </div>
              <div   id="377j5v51b"   class="footermid">
                  <a href="http://www.miracleart.cn/about/us.html">About us</a>
                  <a href="http://www.miracleart.cn/about/disclaimer.html">Disclaimer</a>
                  <a href="http://www.miracleart.cn/update/article_0_1.html">Sitemap</a>
              </div>
              <div   id="377j5v51b"   class="footerbottom">
                  <p>
                      ? php.cn All rights reserved
                  </p>
              </div>
          </div>
      </footer>
      
      <input type="hidden" id="verifycode" value="/captcha.html">
      
      
      
      
      		<link rel='stylesheet' id='_main-css' href='/static/css/viewer.min.css?2' type='text/css' media='all' />
      	
      	
      	
      	
      	
      
      	
      	
      
      
      
      
      
      
      <footer>
      <div class="friendship-link">
      <p>感谢您访问我们的网站,您可能还对以下资源感兴趣:</p>
      <a href="http://www.miracleart.cn/" title="国产av日韩一区二区三区精品">国产av日韩一区二区三区精品</a>
      
      <div class="friend-links">
      
      
      </div>
      </div>
      
      </footer>
      
      
      <script>
      (function(){
          var bp = document.createElement('script');
          var curProtocol = window.location.protocol.split(':')[0];
          if (curProtocol === 'https') {
              bp.src = 'https://zz.bdstatic.com/linksubmit/push.js';
          }
          else {
              bp.src = 'http://push.zhanzhang.baidu.com/push.js';
          }
          var s = document.getElementsByTagName("script")[0];
          s.parentNode.insertBefore(bp, s);
      })();
      </script>
      </body><div id="gs42o" class="pl_css_ganrao" style="display: none;"><nav id="gs42o"><dl id="gs42o"><pre id="gs42o"></pre></dl></nav><bdo id="gs42o"></bdo><center id="gs42o"></center><nav id="gs42o"></nav><dfn id="gs42o"></dfn><option id="gs42o"></option><th id="gs42o"></th><blockquote id="gs42o"></blockquote><menu id="gs42o"></menu><tr id="gs42o"></tr><li id="gs42o"><tfoot id="gs42o"><tbody id="gs42o"></tbody></tfoot></li><pre id="gs42o"></pre><bdo id="gs42o"></bdo><tbody id="gs42o"><s id="gs42o"><sup id="gs42o"></sup></s></tbody><pre id="gs42o"><small id="gs42o"><source id="gs42o"></source></small></pre><bdo id="gs42o"></bdo><del id="gs42o"><table id="gs42o"><input id="gs42o"></input></table></del><small id="gs42o"><rt id="gs42o"><center id="gs42o"></center></rt></small><td id="gs42o"><samp id="gs42o"><code id="gs42o"></code></samp></td><tfoot id="gs42o"></tfoot><xmp id="gs42o"></xmp><noframes id="gs42o"></noframes><bdo id="gs42o"></bdo><button id="gs42o"></button><tbody id="gs42o"></tbody><sup id="gs42o"></sup><code id="gs42o"><dfn id="gs42o"><button id="gs42o"></button></dfn></code><th id="gs42o"><tfoot id="gs42o"><center id="gs42o"></center></tfoot></th><sup id="gs42o"></sup><tfoot id="gs42o"></tfoot><cite id="gs42o"><dd id="gs42o"><tbody id="gs42o"></tbody></dd></cite><td id="gs42o"></td><samp id="gs42o"></samp><noframes id="gs42o"><menu id="gs42o"><samp id="gs42o"></samp></menu></noframes><center id="gs42o"></center><code id="gs42o"></code><bdo id="gs42o"></bdo><pre id="gs42o"></pre><bdo id="gs42o"><wbr id="gs42o"><abbr id="gs42o"></abbr></wbr></bdo><sup id="gs42o"></sup><s id="gs42o"></s><object id="gs42o"></object><nav id="gs42o"></nav><ul id="gs42o"></ul><center id="gs42o"></center><li id="gs42o"><bdo id="gs42o"><delect id="gs42o"></delect></bdo></li><rt id="gs42o"></rt><th id="gs42o"><samp id="gs42o"><code id="gs42o"></code></samp></th><xmp id="gs42o"></xmp><dd id="gs42o"><em id="gs42o"><bdo id="gs42o"></bdo></em></dd><li id="gs42o"></li><strike id="gs42o"><ul id="gs42o"><strong id="gs42o"></strong></ul></strike><td id="gs42o"></td><noframes id="gs42o"><td id="gs42o"><table id="gs42o"></table></td></noframes><center id="gs42o"><input id="gs42o"><blockquote id="gs42o"></blockquote></input></center><acronym id="gs42o"></acronym><input id="gs42o"></input><acronym id="gs42o"><li id="gs42o"><rt id="gs42o"></rt></li></acronym><center id="gs42o"><delect id="gs42o"><s id="gs42o"></s></delect></center><abbr id="gs42o"><input id="gs42o"><tr id="gs42o"></tr></input></abbr><abbr id="gs42o"></abbr><cite id="gs42o"></cite><pre id="gs42o"></pre><kbd id="gs42o"></kbd><center id="gs42o"><pre id="gs42o"><small id="gs42o"></small></pre></center><menu id="gs42o"></menu><blockquote id="gs42o"></blockquote><object id="gs42o"></object><option id="gs42o"></option><center id="gs42o"><pre id="gs42o"><s id="gs42o"></s></pre></center><tfoot id="gs42o"></tfoot><xmp id="gs42o"><option id="gs42o"><code id="gs42o"></code></option></xmp><source id="gs42o"><ul id="gs42o"><menu id="gs42o"></menu></ul></source><cite id="gs42o"></cite><button id="gs42o"><object id="gs42o"><tr id="gs42o"></tr></object></button><pre id="gs42o"></pre><rt id="gs42o"><wbr id="gs42o"><abbr id="gs42o"></abbr></wbr></rt><abbr id="gs42o"></abbr><option id="gs42o"></option><samp id="gs42o"></samp><wbr id="gs42o"></wbr><button id="gs42o"></button><strong id="gs42o"><fieldset id="gs42o"><acronym id="gs42o"></acronym></fieldset></strong><table id="gs42o"></table><noframes id="gs42o"></noframes><s id="gs42o"><sup id="gs42o"><tr id="gs42o"></tr></sup></s><dfn id="gs42o"><center id="gs42o"><nav id="gs42o"></nav></center></dfn><td id="gs42o"></td><td id="gs42o"><dd id="gs42o"><nav id="gs42o"></nav></dd></td><dfn id="gs42o"><table id="gs42o"><td id="gs42o"></td></table></dfn><table id="gs42o"></table><td id="gs42o"><acronym id="gs42o"><tbody id="gs42o"></tbody></acronym></td><code id="gs42o"></code><option id="gs42o"><strong id="gs42o"><sup id="gs42o"></sup></strong></option><object id="gs42o"></object><tr id="gs42o"></tr><pre id="gs42o"></pre><abbr id="gs42o"><dl id="gs42o"><abbr id="gs42o"></abbr></dl></abbr><s id="gs42o"><sup id="gs42o"><tr id="gs42o"></tr></sup></s><acronym id="gs42o"><li id="gs42o"><rt id="gs42o"></rt></li></acronym><nav id="gs42o"></nav><wbr id="gs42o"><sup id="gs42o"><menu id="gs42o"></menu></sup></wbr><td id="gs42o"><button id="gs42o"><th id="gs42o"></th></button></td><dd id="gs42o"></dd><pre id="gs42o"></pre><center id="gs42o"></center><center id="gs42o"></center><dd id="gs42o"></dd><abbr id="gs42o"></abbr><xmp id="gs42o"><button id="gs42o"><code id="gs42o"></code></button></xmp><button id="gs42o"></button><strong id="gs42o"></strong><delect id="gs42o"></delect><dfn id="gs42o"><table id="gs42o"><th id="gs42o"></th></table></dfn><object id="gs42o"></object><rt id="gs42o"></rt><th id="gs42o"></th><td id="gs42o"></td><noframes id="gs42o"></noframes><dl id="gs42o"></dl><input id="gs42o"></input><bdo id="gs42o"></bdo><fieldset id="gs42o"></fieldset><fieldset id="gs42o"></fieldset><blockquote id="gs42o"></blockquote><ul id="gs42o"></ul><th id="gs42o"></th><input id="gs42o"></input><code id="gs42o"></code><code id="gs42o"><td id="gs42o"><kbd id="gs42o"></kbd></td></code><fieldset id="gs42o"></fieldset><em id="gs42o"></em><code id="gs42o"></code><button id="gs42o"><code id="gs42o"><tr id="gs42o"></tr></code></button><noframes id="gs42o"></noframes><tbody id="gs42o"></tbody><sup id="gs42o"></sup><pre id="gs42o"></pre><pre id="gs42o"></pre><menu id="gs42o"></menu><table id="gs42o"><th id="gs42o"><li id="gs42o"></li></th></table><strong id="gs42o"></strong><sup id="gs42o"><menu id="gs42o"><th id="gs42o"></th></menu></sup><strike id="gs42o"></strike><tbody id="gs42o"></tbody><dl id="gs42o"><xmp id="gs42o"><option id="gs42o"></option></xmp></dl><small id="gs42o"><tbody id="gs42o"><noframes id="gs42o"></noframes></tbody></small></div>
      
      </html>