ICode9

精准搜索请尝试: 精确搜索
  • [学习笔记]基础字符串算法2022-02-21 13:33:45

    这里使用“基础”仅代表整合一些篇幅小的算法与后续几篇大的字符串算法文章区别。 留给自己补科技树的时间越来越短了。 字符串哈希 容易实现,可以快速比对两个串是否相等。 一般可以使用自然溢出\(Hash\)。 注意使用非自然溢出时,应当把膜数取比字符串数量高一个数量级的质数。 最

  • border, boundary2022-02-19 01:05:17

    The boundary of an area of land is an imaginary line that separates it from other areas. The Mississippi River [密西西比河] forms a natural boundary between Iowa [爱荷华州] and Illinois [伊利诺伊州]. The stream curves round to mark the boundary of his prope

  • WEB前端开发--3(CSS样式)2022-02-18 22:03:38

    WEB 前端开发--3(CSS样式) 1. CSS概述 HTML:网页的内容     CSS:内容的样式 CSS:Cascading Style Sheets  层叠样式表 内容和样式分离,易于修改样式 1.1 CSS语法 选择器中的行语句以分号结束 选择器:p{}        注释:  /*注释*/ p{   font-size:12px;     /* 字号*/   colo

  • css快速入门(下)2022-02-17 23:31:50

    css快速入门(下) 七、盒子模型 1、什么是盒子模型 margin:外边距; padding:内边框; border:边框; 2、边框 border:粗细 样式 颜色 边框的粗细 边框的样式 边框的颜色 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>盒子</title>

  • css练手 tabs选项卡切换2022-02-15 20:04:05

    <!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-Co

  • css实现一个冰墩墩2022-02-11 09:01:00

    一墩难求,花了一两个小时自己画了一个,HTML结构很简单,CSS上主要就是将各个位置定位,肚子上的logo就只有发挥啦 以下是HTML代码 <div class="container"> <div class="m_body"></div> <div class="ear_l"></div> <div class="ear_r"&g

  • 内外边距及div居中2022-02-10 15:32:02

    内外边距 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <!--外边距的妙用:居中元素 margin: 0 auto; --> <style> #box{ wid

  • 前端elementUI表头header,表格body的字体大小背景颜色大小设置2022-02-10 13:34:00

    复制代码到编译器直接用查看即可 elementUI官方文档地址: https://element.eleme.cn/#/zh-CN/component/table#table-slot 表格属性查看属性Table Attributes 1.表头样式属性: header-cell-style 2.表格样式属性: cell-style 看代码 第一种写行间样式写法: <el-table

  • 常用Java、css、js等2022-02-10 11:01:16

    1.如何隐藏一个FORM里的input? 隱藏了,但會佔位置 <input type=text style="visibility:hidden"> 隱藏了,但不會佔位置 <input type=text style="display:none"> 2.只能输入数字,不能输入小数点 oninput="value=value.replace(/[^0-9]/g,'')" 3.通过div指定css设置

  • css(三)2022-02-10 09:32:47

    [CSS快速入门(三)] 字体相关调整 注意:只有块儿级标签可以设置,行内标签无法设置 /*宽和高*/ height: 1000px; width: 50px; /*字体大小*/ font-size: 99px; /*粗细*/ font-weight: bolder; font-weight: lighter; /*文本颜色(重点)*/ color:red; /*第一种*/ color:#4e4e4e; /*

  • day11---2.92022-02-09 23:04:14

    这几天做了三个练习 学习真的好难坚持。。。 一、盒子的尺寸         默认情况下,盒子可见框大小由内容区,内边距和边框共同决定         box-sizing 用来设置盒子尺寸的计算方式(设置width和height的作用)                 可选值:      

  • Vue 实现表格单元格的原位编辑2022-02-09 20:02:01

    这里写自定义目录标题 Vue 实现表格单元格的原位编辑起初功能问题期待天降大神前来解救。 Vue 实现表格单元格的原位编辑 这里是 Vue 初学者的笔记,老鸟请回避。如果你是热心的前辈,热切期盼您留下宝贵的意见。 起初 有一个小需求,我希望通过浏览器读入 excel 文件,并可以

  • CSS三角2022-02-09 11:02:24

    CSS三角 .box1 { width: 0; height: 0; /* border: 10px solid pink; */ border-top: 10px solid pink; border-right: 10px solid red; border-bottom: 10px solid blue; border-left: 1

  • 3、前端--伪元素选择器、选择器优先级、字体、背景、边框、display、盒子模型2022-02-09 09:04:37

    伪元素选择器 # 首字调整>>>:也是一种文档布局的方式 p:first-letter { font-size: 48px; /*字体大小*/ color: red; } # 在文本的前面通过css动态渲染文本>>>:特殊文本无法选中 p:before { content: '嘿嘿'; color: re

  • 自己制作的网站最边缘出现空白边框是怎么回事?2022-02-08 23:01:59

    刚刚开始学HTML的小伙伴们一般都会去模仿一些网站的模样,但是辛辛苦苦弄了半天之后发现一个令人崩溃的事情,那就是自己的网站莫名其妙的有一个空白边框,很不雅观。 就像这样, 右键网页进入检查可以找到  将鼠标放在橙色的部分可以看到页面中高亮的地方就是那个边框。 原来对于<ba

  • 第四次HTML学习笔记(css的常用属性,盒子模型)2022-02-08 19:58:50

    css常用属性 一、背景 1.background-color 设置元素的背景颜色 2.background-image 设置元素的背景图像,默认情况下,背景图像进行平铺重复显示,以覆盖整个元素实体 3.background-repeat 设置如何重复背景图像 二、文本 1.color 字体颜色 2.text-align 对齐方式 3.text-decoratio

  • 网页前端第四次学习2022-02-08 16:00:14

    一.CSS属性 1.背景                 /* 背景颜色 */                 background-color: #EEE8AA;                 /* 背景图片 */                 background-image: url(img/bd.png);                 /*

  • 有趣且重要的css知识合集(3)好看的css2022-02-08 15:00:00

    1、background:linear-gradient(90deg,rgba(237,219,211,1) 0%,rgba(202,152,124,1) 100%) 2、多边形①clip-path:polygon(50% 0,50% 0,100% 100%) 三角形 ②width:0;height:0;border-width:0 40px 40px;border-color:transparent transparent color 3、shape-outside 环绕

  • 伪类实现书签样式2022-02-08 14:01:09

       <!--css--> .border {   background: #099;   width: 60px;   height: 30px;   position: absolute;   right: 0; } .border::after {   position: absolute;   content: "";   top: 30px;   right: 0;   border-bottom: 10px

  • 网页前端培训5盒子模型2022-02-08 13:34:14

    padding内边距         设置元素所有内边距的宽度或者是设置边上内边距的宽度         单独设置各边的内边距:padding-top padding-left paddling-bottom padding-right border边框         设置边框的颜色、样式、宽度 单独设置:  border-color    

  • css盒子在不同浏览器下的差异2022-02-08 11:00:12

    标准盒子模型 盒子模型的氛围包括四个部分:margin,border,padding,content 标准盒子模型的content不包括其他内容,只有width跟height部分     content = height + width border-size默认值为content-box,表示标准盒子模型 IE盒子模型 IE盒子模型的content部分包含padding与border部

  • css3基础012022-02-08 10:04:48

    三角形样例: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title

  • 前端基础2——CSS32022-02-07 18:32:34

    目录 什么是CSSCSS的导入方式选择器美化网页元素盒子模型浮动定位 什么是CSS Cascading Style Sheet 层叠级联样式表 CSS:表现层(美化网页) 字体,颜色,边距,高宽,背景图片,网页定位,网页浮动。。。 CSS的导入方式 行内样式 内部样式 外部样式 <!DOCTYPE html> <html lang="en"> <h

  • 97-100 css 各种边框样式设计2022-02-07 15:34:23

          <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="

  • border-image-source使用2022-02-07 15:04:54

    border-image-source使用 注:使用border-image-source属性必须给容器添加border属性 <style> .box{ width: 300px; height: 200px; border: 27px solid #aaa; /*必须有这个属性*/ background-color: #07a; border-image-source: url(../image/border-ic

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有