学习HTML5的第三天: 1.带样式的表格表单 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>表格表单</title> <style type="text/css"> tr { border: none; height: 30 ...
分类:
Web程序 时间:
2021-07-01 16:36:54
阅读次数:
0
current status: We have a remote repository and a local project repository with no git configured. We want to push to remote and create new branch. Pr ...
分类:
其他好文 时间:
2021-07-01 16:24:13
阅读次数:
0
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv ...
分类:
Web程序 时间:
2021-06-28 21:02:23
阅读次数:
0
div{ width: 0px; border: 30px solid transparent; border-left-color: tomato;} 第二种方法 div{ margin: auto; width: 0px; border-top: 20px solid transparent; ...
分类:
其他好文 时间:
2021-06-28 19:45:26
阅读次数:
0
1 <?php 2 // 乘法口诀 3 echo'<table width="800" height="200" border="1">'; 4 for($i=1;$i<=9;$i++) 5 { 6 echo'<tr>'; 7 for($j=1;$j<=$i;$j++) 8 { 9 echo'<td ...
分类:
Web程序 时间:
2021-06-28 18:52:56
阅读次数:
0
字符串的格式化方法分为两种,分别为占位符(%)和format方式。占位符方式在Python2.x中用的比较广泛,随着Python3.x的使用越来越广,format方式使用的更加广泛。 一 占位符(%) %d 1 2 3 age = 29 print("my age is %d" %age) #my ...
分类:
编程语言 时间:
2021-06-28 18:22:35
阅读次数:
0
一、什么是bootstrap?bootstrap是一个前端开发时使用的框架。前端开发主要写HTML5、css3、JavaScript。而bootstrap框架主要为我们提供两个最重要的文件:bootstrap.min.css和bootstrap.min.js。为什么没有.min.html呢?不知道, ...
分类:
其他好文 时间:
2021-06-25 16:58:48
阅读次数:
0
em, i { font-style: normal } * { margin: 0; padding: 0 } li { list-style: none } /* 图片后字体垂直于中部位置*/ img { border: 0; vertical-align: middle } /* 鼠标为指针样 ...
分类:
Web程序 时间:
2021-06-25 16:46:21
阅读次数:
0
这段时间去找工作,发现了很多出现概率比较高的面试题,这里记录一下,希望对大家有帮助! 盒子模型的类型和区别 盒子包括:外边距(margin)、边框(border)、内边距(padding)、实际内容(content)四个属性。 分为盒子模型(标准盒模型)和IE盒子模型(怪异盒模型),两者最大的区别是 ...
分类:
其他好文 时间:
2021-06-24 18:17:06
阅读次数:
0
问题描述 为了保护Redis资源,把它与VNET集成后,实现只能通过VNET内网访问。在东二的区域中部署两个Redis服务后,发现一个奇怪的现象:东1区中的VM资源通过全局对等互联(Peering)实现了资源的互通。但在验证测试中,发现VM能连接第一个Redis资源,而无法连接第二个Redis资源? ...
分类:
Web程序 时间:
2021-06-24 17:44:46
阅读次数:
0