search
HomeWeb Front-endHTML TutorialPlease help me write a nesting problem between lists_html/css_WEB-ITnose

[img=http://b308.photo.store.qq.com/psb?/2a2c138b-2138-4b25-88ba-2e534a7d1b9d/q2X9ID5uXEbQrmmF47UhgMVmcK*H7WdJNnpTLEPrFto!/b/YWLGn7fxGAAAYmIkmLcbGQAA][/img]

最好是列表与列表的嵌套的,因为要后台传入数据。。


 

      

  •    

           
    • 品牌女装

    •      
    • Please help me write a nesting problem between lists_html/css_WEB-ITnose

    •      

    •       

               
      • 太虚

      •        
      • |

      •        
      • 太虚

      •        
      • 太虚

      •        
      • |

      •        
      • 太虚

      •       

           

    •    

      

  •   
  • Please help me write a nesting problem between lists_html/css_WEB-ITnose

  •   
  • Please help me write a nesting problem between lists_html/css_WEB-ITnose

  •   
  • Please help me write a nesting problem between lists_html/css_WEB-ITnose

  •   
  • Please help me write a nesting problem between lists_html/css_WEB-ITnose

  •   
  • Please help me write a nesting problem between lists_html/css_WEB-ITnose

  •  


Reply to discussion (solution)

Okay, I admit that my Chinese language skills are not good

Okay, I admit that I The philology is not good
Ignore my code below. . Can you write an exact layout for me?

Quote from the 1st floor’s reply:

Okay, I admit that my philology is not good

Ignore my code below. . Can you write an exact layout for me?


The key is that I can’t see your pictures either

Quote from 2nd floor’s reply:

Quote from 1st floor’s reply:

Okay I admit that my philology is not good

Ignore my code below. . Can you write an exact layout for me?



The key is that I can’t see your picture either
Just like the footer of Taobao Mall...

Quote from 3rd Floor’s reply:
Quoted from the 2nd floor’s reply:

Quoted from the 1st floor’s reply:

Okay, I admit that my philology is not good

Ignore my code below. . Can you write an exact layout for me?



The key is that I can’t see your pictures either

Just like the footer of Taobao Mall...



Since you already have the code, why do you still need to write it? ? ?

<style>#category{ font-size:12px;}#category label{ font-weight:bold; height:30px; line-height:30px;}#category ul{ list-style-type:none;}#category > ul,#category li ul{ margin:0; padding:0px;  width:auto; overflow:hidden;}#category > ul > li{ float:left; width:21%; border:solid 1px #ccc; padding:1%; margin:1%;}li li{ float:left; margin:5px 3px; padding:0 5px;border-left:solid 1px #ccc;}li li:first-child{ border-left:none;}</style><div id="category">    <ul>        <li>             <label>品牌女装</label>             <img  src="/static/imghwm/default1.png"  data-src="my image path"  class="lazy"   / alt="Please help me write a nesting problem between lists_html/css_WEB-ITnose" >            <ul>                <li>连衣裙</li>                <li>T?</li>                <li>衬衫</li>                <li>婚纱</li>                <li>连衣裙</li>                <li>T?</li>                <li>衬衫</li>                <li>婚纱</li>                <li>连衣裙</li>                <li>T?</li>                <li>衬衫</li>                <li>婚纱</li>            </ul>        </li>        <li>             <label>时尚男装</label>             <img  src="/static/imghwm/default1.png"  data-src="my image path"  class="lazy"   / alt="Please help me write a nesting problem between lists_html/css_WEB-ITnose" >            <ul>                <li>连衣裙</li>                <li>T?</li>                <li>衬衫</li>                <li>婚纱</li>                <li>连衣裙</li>                <li>T?</li>                <li>衬衫</li>                <li>婚纱</li>                <li>连衣裙</li>                <li>T?</li>                <li>衬衫</li>                <li>婚纱</li>            </ul>        </li>    </ul></div>

Quote from 4th Floor’s reply:

Quote from 3rd Floor’s reply:
Quote from 2nd Floor’s reply:

Quote from 1 Lou’s reply:

Okay, I admit that my Chinese language skills are not good

Ignore my code below. . Can you write an exact layout for me?



The key is that I can’t see your pictures either

Just like the footer of Taobao Mall...




Since you already have the code, why do you still need to write it? ? ?
No, I can’t handle the nesting problem of ul and ul well. . It will always be indented

HTML code


HTML code


1: Display label as a block-level element, as follows.
#category label{ font-weight:bold; height:30px; line-height:30px; display:block}

2: Add the following style to the image
li img{ display:block; margin:0 auto;}

Thank you~··ok

Statement
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
What is the purpose of the <datalist> element?What is the purpose of the <datalist> element?Mar 21, 2025 pm 12:33 PM

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

What is the purpose of the <progress> element?What is the purpose of the <progress> element?Mar 21, 2025 pm 12:34 PM

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

What is the purpose of the <meter> element?What is the purpose of the <meter> element?Mar 21, 2025 pm 12:35 PM

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

What is the purpose of the <iframe> tag? What are the security considerations when using it?What is the purpose of the <iframe> tag? What are the security considerations when using it?Mar 20, 2025 pm 06:05 PM

The article discusses the <iframe> tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

How do I use HTML5 form validation attributes to validate user input?How do I use HTML5 form validation attributes to validate user input?Mar 17, 2025 pm 12:27 PM

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

What is the viewport meta tag? Why is it important for responsive design?What is the viewport meta tag? Why is it important for responsive design?Mar 20, 2025 pm 05:56 PM

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

What are the best practices for cross-browser compatibility in HTML5?What are the best practices for cross-browser compatibility in HTML5?Mar 17, 2025 pm 12:20 PM

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

How do I use the HTML5 <time> element to represent dates and times semantically?How do I use the HTML5 <time> element to represent dates and times semantically?Mar 12, 2025 pm 04:05 PM

This article explains the HTML5 <time> element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version