Several schemes for mixing CSS graphics and text_CSS/HTML
The html structure is ugly, but the css is simple.
Sina Weibo homepage plan:
CSS:
.twit_list dd .twit_item_pic{float:left;width:66px;padding-top:2px;} .twit_list dd .twit_item_content{float:left;width:316px;color:#666;line-height:18px;}
Most test takers have this answer. If floating is used, the width must be fixed, and the structure will lose flexibility. At the same time, a series of problems caused by floating must be solved.
NetEase homepage plan:
CSS:
.list-figure { float: left; _display: inline; width: 130px; margin-left: -140px; margin-top: 6px; }
These writing methods lack understanding of the basic concepts of CSS. If you understand the concept of block formatting context (block-level formatting context), you won't write like this. For block-level elements that trigger BFC, their edges will not overlap the float box.
Recommended solution:
CSS:
.item .pic { float:left;margin-right:10px; }
.item .content { overflow:hidden;zoom:1; } /* Or use display:table-cell */
我写的一个实例
Summary
Used It's not technology, it's more skills
Since there is no systematic front-end development course in school, the understanding of the basic concepts of html/css/javascript is very weak. The learning method of most people is: first read the book, and then practice directly if the book is far from practice. When encountering problems, they search online, and what they find are basically "skills". Or you can learn from the "great people" in school and accept all kinds of good and bad experiences. For example, to realize the display effect of the content on the left and right of the picture, write HTML and CSS (see the picture below). This is one of my written test questions, it seems very simple. But no one has the best answer yet. If you look online and see how the big domestic websites achieve this, you can’t blame them.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Guide to Table Border in HTML. Here we discuss multiple ways for defining table-border with examples of the Table Border in HTML.

This is a guide to Nested Table in HTML. Here we discuss how to create a table within the table along with the respective examples.

Guide to HTML margin-left. Here we discuss a brief overview on HTML margin-left and its Examples along with its Code Implementation.

Guide to HTML Table Layout. Here we discuss the Values of HTML Table Layout along with the examples and outputs n detail.

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

Guide to Moving Text in HTML. Here we discuss an introduction, how marquee tag work with syntax and examples to implement.

Guide to the HTML Ordered List. Here we also discuss introduction of HTML Ordered list and types along with their example respectively

Guide to HTML onclick Button. Here we discuss their introduction, working, examples and onclick Event in various events respectively.
