zoukankan      html  css  js  c++  java
  • 边界直列开始样式 | border-inline-start-style (Logical Properties)

  •   CSS 中文开发手册

    边界直列开始样式 | border-inline-start-style (Logical Properties) - CSS 中文开发手册

    这是一种实验技术

    由于该技术的规格不稳定,请查看各种浏览器的兼容性表格以供使用。还要注意,随着规范的变化,实验技术的语法和行为在未来版本的浏览器中可能会发生变化。

    border-inline-start-style映射到依赖于要素的写作模式,方向性和文本方向的物理边框样式的逻辑直列开始边框的样式。它对应于border-top-style,border-right-style,border-bottom-style,或border-left-style属性根据为定义的值writing-mode,direction和text-orientation。

    /* <'border-style'> values */
    border-inline-start-style: dashed;
    border-inline-start-style: dotted;
    border-inline-start-style: groove;

    相关属性是border-block-start-style,border-block-end-style,和border-inline-end-style定义元素的其他边框样式。

    初始值

    none

    应用于

    all elements

    是否继承

    no

    适用媒体

    visual

    计算值

    as specified

    Animation type

    discrete

    规范顺序

    the unique non-ambiguous order defined by the formal grammar

    句法

    价值

    <'border-style'>边框的线条样式,详见border-style.

    形式语法

    <'border-style'>

    HTML内容

    <div>
      <p class="exampleText">Example text</p>
    </div>

    CSS内容

    div {
      background-color: yellow;
       120px;
      height: 120px;
    }
    
    .exampleText {
      writing-mode: vertical-lr;
      border: 5px solid blue;
      border-inline-start-style: dashed;
    }

    规格

    Specification

    Status

    Comment

    CSS Logical Properties Level 1The definition of 'border-inline-start-style' in that specification.

    Editor's Draft

    Initial definition

    浏览器兼容性

    Feature

    Chrome

    Firefox (Gecko)

    Internet Explorer

    Opera

    Safari (WebKit)

    Basic support

    No support

    41.0 (41.0)1

    No support

    No support

    No support

    Feature

    Android

    Firefox Mobile (Gecko)

    IE Phone

    Opera Mobile

    Safari Mobile

    Basic support

    No support

    41.0 (41.0)1

    No support

    No support

    No support

  •   CSS 中文开发手册
    转载请保留页面地址:https://www.breakyizhan.com/css/32389.html
  • 相关阅读:
    B
    A
    UVA
    马的移动(BFS) 详细注释 一个具有情怀的题目
    JAVA JDK 环境变量配置--简单图解
    linux系统(rpm与deb环境),JAVA JDK的配置
    Jmeter接口测试+压力测试+环境配置+证书导出
    LR访问Https接口
    GitHub linux 提交文件及403错误处理
    random模块写的验证码
  • 原文地址:https://www.cnblogs.com/breakyizhan/p/13233985.html
Copyright © 2011-2022 走看看