02-CSS basic and advanced video -day1- 296

 

07 words from .html

 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        div {
            letter-spacing: 6px; / * Word spacing * / 
        } 
        the p- { 
            Word-spacing : 8px ;  / * word spacing for the English to Chinese invalid * / 
        } 
    </ style > 
</ head > 
< body > 
    < div > I am a teacher Aaron </ div > 
    < P > My name IS Along </ P > 
</ body > 
</ HTML >

08 translucent .html

 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        h1 {
            color: rgba(255,0,0,0.3);  
        } 
    </ Style > 
</ head > 
< body > 
    < h1 of > text can be translucent unitary </ h1 of > 
</ body > 
</ HTML >

 

Reproduced in: https: //www.cnblogs.com/HiJackykun/p/11037297.html

Guess you like

Origin blog.csdn.net/weixin_33829657/article/details/93407459