This article mainly introduces the relevant information about using html and css to implement the Cornell Notes (5R Notes) template. Friends in need can refer to it
Origin
People say that the Cornell note-taking method is very useful. It can resist the forgetting curve and make your notes more effective with half the effort. Interested students can search it on Baidu.
There are many ready-made templates on the Internet. After downloading them, it seems that it may be more convenient to write English on them. The line spacing is very small, and there is a URL on it. I am not very happy to say that. Later I thought about making a template in word or excel, but then I was surprised that I couldn't set one row of a table to account for 70% of the total table, so I finally gave up. Then I remembered that cm can be used as the unit in css. , why not write one yourself, just use p
implementation
1. First set a p to A4 paper The size is 21cm wide and 29.7cm high
<p id="abody"> </p> #abody { width: 21cm; height: 29.7cm; margin: 0 auto; overflow: hidden; padding: 1.5cm 1.2cm 1.2cm 2.5cm;}
2. Add two floating p’s to a p as big as A4 paper, one to the left, occupying 29% of the space, one to the right, occupying 68% of the space
<p id="main" class="main le"> <p class="aline">提示</p> <p class="aline"></p> </p> <p id="sider" class="main ri"> <p class="aline">笔记</p> <p class="aline"></p> </p> <p id="footer" class="footer"> <p class="aline doubleline">概要</p> <p class="aline"></p> </p>
Use css border to separate the two columns
.main {height: 75%; overflow: hidden;} .le { width: 28.99999%; border-right: double 3px #666; float: left; } .ri { width: 69.99999%; float: right; }
3. Write horizontal lines line by line in the big box, use a p's aline class to implement it, see the html above
If your editor supports emmet, write A p.aline*42, there will be 42 lines of the same p appearing. Then use the border attribute of CSS to draw lines one by one.
.aline { height: 0.9cm; border-bottom: 1px; border-bottom-style: dashed; border-bottom-color: #999; margin-right: 8px; color: #eee; line-height: 0.9cm;}
4. Then put a p behind the two large boxes on the left and right, clear the float, and put the summary part.
<p id="main" class="main le"> <p class="aline">提示</p> <p class="aline"></p> </p> <p id="sider" class="main ri"> <p class="aline">笔记</p> <p class="aline"></p> </p> <p id="footer" class="footer"> <p class="aline doubleline">概要</p> <p class="aline"></p> </p>
, the first line inside, use a solid line to separate the lower part of the 5R note structure
.footer {clear: both; overflow: hidden;} .doubleline { border-top: double 3px #666;}
The above is the entire content of this article. I hope it will be helpful to everyone's study. For more related content, please pay attention to the PHP Chinese website!
Related recommendations:
HTML5 and CSS3
Realize the switching effect of smart animation
How to use html2canvas to convert html code into pictures
The above is the detailed content of Use html and css to implement a template for Cornell notes. For more information, please follow other related articles on the PHP Chinese website!

TocreatealistinHTML,useforunorderedlistsandfororderedlists:1)Forunorderedlists,wrapitemsinanduseforeachitem,renderingasabulletedlist.2)Fororderedlists,useandfornumberedlists,customizablewiththetypeattributefordifferentnumberingstyles.

HTML is used to build websites with clear structure. 1) Use tags such as, and define the website structure. 2) Examples show the structure of blogs and e-commerce websites. 3) Avoid common mistakes such as incorrect label nesting. 4) Optimize performance by reducing HTTP requests and using semantic tags.

ToinsertanimageintoanHTMLpage,usethetagwithsrcandaltattributes.1)UsealttextforaccessibilityandSEO.2)Implementsrcsetforresponsiveimages.3)Applylazyloadingwithloading="lazy"tooptimizeperformance.4)OptimizeimagesusingtoolslikeImageOptimtoreduc

The core purpose of HTML is to enable the browser to understand and display web content. 1. HTML defines the web page structure and content through tags, such as, to, etc. 2. HTML5 enhances multimedia support and introduces and tags. 3.HTML provides form elements to support user interaction. 4. Optimizing HTML code can improve web page performance, such as reducing HTTP requests and compressing HTML.

HTMLtagsareessentialforwebdevelopmentastheystructureandenhancewebpages.1)Theydefinelayout,semantics,andinteractivity.2)SemantictagsimproveaccessibilityandSEO.3)Properuseoftagscanoptimizeperformanceandensurecross-browsercompatibility.

A consistent HTML encoding style is important because it improves the readability, maintainability and efficiency of the code. 1) Use lowercase tags and attributes, 2) Keep consistent indentation, 3) Select and stick to single or double quotes, 4) Avoid mixing different styles in projects, 5) Use automation tools such as Prettier or ESLint to ensure consistency in styles.

Solution to implement multi-project carousel in Bootstrap4 Implementing multi-project carousel in Bootstrap4 is not an easy task. Although Bootstrap...

How to achieve the effect of mouse scrolling event penetration? When we browse the web, we often encounter some special interaction designs. For example, on deepseek official website, �...


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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Dreamweaver CS6
Visual web development tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.
