I just learned some html yesterday, and I couldn't wait to make a search bar on JD.com. I did make it, but when I was checking out the shopping cart, I didn't know how to add a number displayed on it. If I want the number to move with the shopping cart, I have to position them together. Positioning definitely requires position. First, set the position of the div with the number to absolute, which gives me a sense of layering. Because the parent tag of the position of the number is body, I can also set top and left to the desired position with the shopping cart. However, if I change the margin of the shopping cart, the two cannot move together, so I set the position of the shopping cart to relative, so that the parent tag of the position of the number becomes the shopping cart. No matter how the margin of the shopping cart is adjusted, the number will move with it... Copy code The code is as follows:<html> <head> <title>day03.html</title> <style type="text/css"> /*First write a position div*/ #car{ width:150px;height:30px; background: #999999; color:white;text-align:center; line-height: 30px;margin: 232px 300px; border:1px solid black;position: relative; } #num{ width:20px;height:20px;background: red; color:white;text-align:center; line-height:20px;position: absolute; top:-15px;left:25px; } </style> </head> <body> <div id="car"> Go to the shopping cart to pay <div id="num">0</div> </div> </body> </html> |
>>: MySQL Series 14 MySQL High Availability Implementation
A process is a program code that runs in the CPU ...
Table of contents Ref and Reactive Ref Reactive T...
Table of contents 01. Use useState when render is...
Look at the solution first #------------The probl...
What is an index? An index is a data structure th...
Today, due to project requirements, js is needed t...
After entering yum in linux, the prompt: -bash: /...
Table of contents 1. Set Deduplication 2. Double ...
1. Link layout of the new site homepage 1. The loc...
MySQL DDL statements What is DDL, DML. DDL is dat...
This article example shares the specific code of ...
In the article MySQL Optimization: Cache Optimiza...
1. Introduction When we log in to MySQL, we often...
Table of contents Preface React Functional Compon...
Separation of static and dynamic Dynamic requests...