zoukankan      html  css  js  c++  java
  • 常用的边框属性

    常用的边框属性

    葡萄

    <!DOCTYPE html>
    <html>
    <head lang="en">
        <meta charset="UTF-8">
        <title>常用的边框属性</title>
        <style>
            img{
                border- 3px;
                /*solid:实线 dotted:点线 dashed:虚线 double:双实线*/
                border-style: solid;
                border-color: red;
            }
    
            img{
                /*上下左右  top bottom left right*/
                border-bottom- 5px;
                border-bottom-style: dotted;
                border-bottom-color: black;
            }
    
            img{
                border-top- 5px;
                border-top-color: blueviolet;
                border-top-style: dashed;
            }
    
            /*简写形式*/
            img{
                border-left: 5px dotted blue;
            }
    
            img{
                border-right: 5px double palevioletred;
            }
        </style>
    
    </head>
    <body>
        <img src="../文件/grape.jpg" alt="葡萄">
    </body>
    </html>
    

      

  • 相关阅读:
    IntPutStream字节输入流
    FileOutPutStream
    FileOutPutStream 一次写多个字节
    OutPutStream
    FileFilter 2
    FileFilter
    Selenium请求过快 解决方法
    Selenium 定位元素的方法
    Selenium自动化环境安装
    Appium定位元素方法
  • 原文地址:https://www.cnblogs.com/john568300/p/6398069.html
Copyright © 2011-2022 走看看