HTML left and right layout example code

HTML left and right layout example code
CSS:

Copy code
The code is as follows:

html,body{ margin:0px; padding:0px; height: 100%; } .headbg{ background: black; color: white; height:48px; } .userManagerAll{ height: 100%; width: 100%; } .leftside{ background: #E6E6E6; float: left; height: 100%; width: 200px; margin: 0px; overflow-y:auto; } .rightside{ background: white; height: 100%; width:100%; align:right; }

html

Copy code
The code is as follows:

<div class="head"></div>
<div class="All">
<div class="left side">1</div>
<div class="right side">2</div>
</div>

Click the text box and the text disappears

Copy code
The code is as follows:

<input name="textfield" style="color:#CCC;" type="text" value="Click the text to disappear" size="12" onclick="value='';focus()" onblur="if(value=='') value='Click the text to disappear;"/>

<<:  Detailed steps for configuring virtual hosts in nginx

>>:  Regular expression usage in CSS selectors

Recommend

Docker5 full-featured harbor warehouse construction process

Harbor is an enterprise-level registry server for...

Mysql8.0 uses window functions to solve sorting problems

Introduction to MySQL Window Functions MySQL has ...

HTML form_PowerNode Java Academy

1. Form 1. The role of the form HTML forms are us...

Simple writing of MYSQL stored procedures and functions

What is a stored procedure Simply put, it is a se...

Implementation of MySQL Shell import_table data import

Table of contents 1. Introduction to import_table...

A brief analysis of whether using iframe to call a page will cache the page

Recently, I have a project that requires using ifr...

Summary of several MySQL installation methods and configuration issues

1. MySQL rpm package installation # Download the ...

How to clear the timer elegantly in Vue

Table of contents Preface optimization Derivative...

Calculation of percentage value when the css position property is absolute

When position is absolute, the percentage of its ...

MySQL msi installation tutorial under windows10 with pictures and text

1. Download 1. Click the latest download from the...

VMware ESXi installation and use record (with download)

Table of contents 1. Install ESXi 2. Set up ESXi ...

Implementation of CSS loading effect Pac-Man

emmm the name is just a random guess 2333 Preface...

In-depth explanation of the principle of MySQL Innodb index

introduction Looking back four years ago, when I ...