首页 > 其他分享 >bootstrap.css-表单-登录案例

bootstrap.css-表单-登录案例

时间:2024-06-06 18:02:15浏览次数:24  
标签:设置 登录 border bootstrap 表单 1px 5px margin css

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
            <!--引入bootstrap.css样式-->
    <link rel="stylesheet" href="static/plugins/bootstrap-3.4.1/css/bootstrap.css">
  <style>
        .centers{
            /*设置一个编剧为1px的边框 颜色为#dddddd*/
            border: 1px solid #dddddd;
            /*设置宽度为400px*/
            width: 400px;
            /*设置上下100px,左右居中*/
            margin-left: auto;
            margin-right: auto;
            margin-top: 100px;
            padding: 20px 40px;
            /**/
            /*设置border的4个角圆角为5px*/
            border-radius: 5px;
            /*设置border的阴影为上下5px左右5px 模糊距离5px颜色为#aaa灰色*/
            box-shadow: 5px 5px 5px #aaa;
        }
        .centers h2{
            text-align: center;
            margin-top: 1px;
        }
  </style>
</head>

<body>

<div class="centers">
    <h2>用户登录</h2>
    <!--从bootstrap中引入表单-->
<form>
  <div class="form-group">
    <label for="exampleInputEmail1">用户名</label>
    <input type="email" class="form-control" id="exampleInputEmail1" placeholder="请输入用户名">
  </div>
  <div class="form-group">
    <label for="exampleInputPassword1">密码</label>
    <input type="password" class="form-control" id="exampleInputPassword1" placeholder="请输入密码">
  </div>
  <button type="submit" class="btn btn-primary">登 录</button>
</form>
</div>
</body>
</html>

image

标签:设置,登录,border,bootstrap,表单,1px,5px,margin,css
From: https://www.cnblogs.com/cy-xt/p/18235731

相关文章

  • css属性
    字体属性:{height:*px}高度{width:*px}宽度{font-size:*px}字体大小{color:red/rgb()/#4f4f4f}字体颜色{font-style:normal/italic/oblique}字体倾斜{font-variant:normal/smal-caps}{font-weight:normal/bold/bolder/lighter/integer}字体粗细{......
  • css选择器
    选择器组合选择器类型后代选择器儿子选择器毗邻选择器弟弟选择器代码说明div1>div2,p2,span2>p1,span1<div>div1<div>div2<p>p1</p></div><p>p2<span>span1</span></p><span......
  • 深入学习 CSS 中的伪元素 ::before 和 ::after
    CSS伪元素用于为元素的指定部分设置样式,作为回顾,先来看下 Mozilla 开发者网站上的解释:伪元素是一个附加至选择器末的关键词,允许你对被选择元素的特定部分修改样式。例如 ::first-line 伪元素可用于更改段落首行文字的样式。可用的CSS伪元素不是很多,但是,作为前端工程师......
  • css 理解了原理,绘制三角形就简单了
     1.border-位置注意:border-bottom/up/right/left主要是以三角形的结构搭建而成,而border也是如此。而且从边框的外围开始计算像素尺寸。在理解了这一点之后,绘制三角形就简单多了。1.transparent注意:该属性主要是颜色透明。<template> <mainstyle="width:500px;border:......
  • 制作一个简单HTML静态网页(HTML+CSS) (2)
    ......
  • 一个简单的HTML网页 、个人主页网页设计(HTML+CSS) (2)
    ......
  • CSS
    css介绍用来对HTM进行装饰的注释语法:/**/语法结构:选择符书写位置直接写在style标签中<style>h1{color:red}</style>直接在标签中定义一个style属性<h1style='color:read'>***</h1>通过外部文件引入<linkrel='',href=''>......
  • web 关于CSS
    我主要将两个好理解的:1这个代码是直接写在html里的,这个是不安全的。还有这个是在<head>标签下的。<styletype="text/css">body{background-image:url('images/background2.jpeg');background-size:cover;line-height:2;}.center-text{text-align:......
  • validate方法进行表单异步校验时,回调函数内部避免使用全局变量
    对整个表单进行校验的方法,参数为一个回调函数。该回调函数会在校验结束后被调用,并传入两个参数:是否校验成功和未通过校验的字段。若不传入回调函数,则会返回一个promise问题代码:save(){console.log(that.pos.indexName)console.log(that.pos.indexCode)......
  • CSS 头部固定,中间滑动
    <!DOCTYPEhtml><htmllang="en"><head><metacharset="UTF-8"><metahttp-equiv="X-UA-Compatible"content="IE=edge"><metaname="viewport"content="width......