small

Bootstrap排版之超大标题

纵然是瞬间 提交于 2019-11-30 04:31:30
排版 标题 HTML 中的所有标题标签, <h1> 到 <h6> 均可使用。另外,还提供了 .h1 到 .h6 类,为的是给内联(inline)属性的文本赋予标题的样式。 h1. Bootstrap heading Semibold 36px h2. Bootstrap heading Semibold 30px h3. Bootstrap heading Semibold 24px h4. Bootstrap heading Semibold 18px h5. Bootstrap heading Semibold 14px h6. Bootstrap heading Semibold 12px 复制 <h1> h1. Bootstrap heading </h1> <h2> h2. Bootstrap heading </h2> <h3> h3. Bootstrap heading </h3> <h4> h4. Bootstrap heading </h4> <h5> h5. Bootstrap heading </h5> <h6> h6. Bootstrap heading </h6> 在标题内还可以包含 <small> 标签或赋予 .small 类的元素,可以用来标记副标题。 h1. Bootstrap heading Secondary text h2. Bootstrap

A small tip to explore how to call a method of a control

前提是你 提交于 2019-11-29 15:54:22
Created by Jerry Wang, last modified on Mar 20, 2015 一个很小的tip:比如我想把一个table里的每个column 设置成宽度自适应的,需要知道应该call哪个方法来实现。 [外链图片转存失败(img-zsZYaNSR-1568514504160)(https://user-images.githubusercontent.com/5669954/27319091-09e05484-5590-11e7-9566-d5418a44d2b9.png)] 一种办法是查help 文档,另一种办法是在debugger里研究: 根据经验这种API一般naming convention都是set: 根据经验定位到应该call setAutoResizable这个方法。下一个问题就是这个方法到底应该传什么参数进去。 直接在debugger里执行方法getMetadata, 展开返回的结果: 这里说明这个set方法应该传一个boolean进去: 要获取更多Jerry的原创文章,请关注公众号"汪子熙": 来源: https://blog.csdn.net/i042416/article/details/100848775

和为s的连续正数序列

时光怂恿深爱的人放手 提交于 2019-11-29 01:38:48
class Solution { public: vector<vector<int> > FindContinuousSequence(int sum) { vector<vector<int> > result; int small=1; int big=2; int smallMax=(sum+1)/2; //最多两数相加 所以 small只能到 (sum+1)/2 while(small<smallMax) { int csum=(small+big)*(big-small+1)/2; if( csum== sum ) //算这区间的和 { int small_save=small;//不能动big vector<int> res; for(int k=0;k<(big-small+1);k++) //把当前找好这组数 放入 { res.push_back(small_save); small_save++; } result.push_back(res);//必须往里面添加数组 //res.clear(); small++; }else if( csum < sum) //和比期望值要小 { big++; } else if(csum> sum) //和比期望值要小 { small++; } } return result; } }; 来源: https://www

AtCoder Beginner Contest 132 F Small Products

我与影子孤独终老i 提交于 2019-11-28 08:27:49
题意:给出K和N。问长度为K的且任相邻两位乘积不超过N的序列个数。 解法:这道题很有意思,解法是参考 https://blog.csdn.net/mxYlulu/article/details/94664000 和 https://www.cnblogs.com/Dup4/p/11148059.html 这两位大佬的。 两位大佬的代码不同,解法是大同小异的。这里说下我的理解。 来源: https://www.cnblogs.com/clno1/p/11398518.html

What small business can learn from Google

旧时模样 提交于 2019-11-26 19:36:54
When I talk to people about Google and its organizational culture, they are equally fascinated and hopeless, believing that the magic behind Google lies in the deep revenue streams that make it possible to feed its employees three meals a day. Small businesses, especially, tend to dismiss Google as a wholly unattainable model for running a business. However, I learned core lessons at Google that transformed the way I look at problem solving and strategic thinking. There were statements that I heard early and often that guided decision-making at every level of the organization. These mantras

Flask-wtf导入Regexp规则库验证手机号码合法性(测试通过)

帅比萌擦擦* 提交于 2019-11-26 16:11:58
手机号码在项目有着很重要的地位,保证用户输入的号码准确无误就显得很关键。 废话不多说,现在页面中引入Regexp规则库: 1 from wtforms.validators import Regexp 验证中添加手机表单元素,规则要求为共11位数字,以1开头,第二位数字是3或5或7或8或9,后面9位是数字且只能以9位数字结束。 后端示例: 1 mobile = StringField('手机', validators=[DataRequired(), length(11,11),Regexp('^1[35789]\d{9}$', 0, '手机号码不合法')],render_kw={'placeholder': '输入手机号'}) 模版示例: 1 <div class="mui-input-row"> 2 {{ form.mobile.label }}{{ form.mobile }}<br> 3 {% for message in form.mobile.errors %} 4 <small class="error">{{ message }}</small><br> 5 {% endfor %} 6 </div> 以上代码个人项目中已经测试通过,具有一定的参考价值。 来源: https://www.cnblogs.com/danqiao/p/11325952.html