为了让我的GitLab页面网站(Jekyll)www.mydomain.com不仅仅被访问,我还需要做些什么mydomain.com?我通过CloudFlare获得SSL.
在我的DNS中我有:
mydomain.com A 104.208.235.32
和CNAME指向myname.gitlab.io并www指向myname.gitlab.io
我是否需要创建子域www并将其指向GitLab?我希望我的网站没有www在网址中,但如果用户输入,www他们仍然可以访问该网站.
使用<video>我的杰奇降价是解析为原始文本,我怎么能得到<video>工作?
<div class="row post-image-bg" markdown="1">
<video width="99%" height="540" autoplay loop muted markdown="1">
<source src="/images/posts/send-cancel.mp4" type="video/mp4" markdown="1" >
<source src="/images/posts/send-cancel.webm" type="video/webm" markdown="1">
</video>
</div>
Run Code Online (Sandbox Code Playgroud) 如何给出一个<tr>负余量来提升它?我想要搬家.small-item-block
<tr>
<td class="item-name">Caprese</td>
<td class="item-description">Fresh mozzarella, tomato, fresh basil and balsamic vinegar on a bed of spinach.</td>
<td>$4.00</td>
<td>$20.00</td>
</tr>
<tr class="small-item-block" >
<td class="item-name"></td>
<td class="item-addition-name">Add Bacon</td>
<td class="item-addition-price">$1.00</td>
<td class="item-addition-price">$3.00</td>
</tr>
Run Code Online (Sandbox Code Playgroud)
CSS
tr.small-item-block {
margin-top: -10px;
border-spacing: -10px;
}
Run Code Online (Sandbox Code Playgroud)
这是JS小提琴.
是否可以要求一个“.” 之后 ”@”?
验证required仅强制电子邮件在“@”之后包含一些内容,但我想需要一个“.”。让用户输入“.com/.org/etc”
http://jsfiddle.net/X6Uuc/333/

我有一个原型,从Sketch导入,有多个640x1136的画板.但是当我在Framer中运行它时,我希望它适合所有设备.现在它只适用于iPhone 5分辨率.为了让原型在所有设备上运行,我需要做什么?
我尝试使每个画板变大,内容居中,然后跑Framer.Device.fullScreen = true,但比例仍然关闭.有没有办法使用百分比而不是静态像素位置,以便视图相应地适合每个设备?
附件是6+(不适合)的样子的截图,以及5(适合)的样子.

我希望表单提交到同一页面,因此我将表单操作保留为黑色.我试过用<button type="submit">,<input type="button">然后<input type="submit">. 这是更多上下文的实时版本.当您单击"添加学生"时,单击"保存学生信息"按钮,它不执行任何操作,但关闭按钮可以正常工作.
这是我的模态的代码.
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title">Add a new student</h4>
</div>
<div class="modal-body">
<form class="form-horizontal" role="form" method="post" action="">
<div class="form-group">
<div class="col-sm-offset-1 col-sm-10">
<input type="text" class="form-control" id="inputID" placeholder="Student ID Number">
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-1 col-sm-10">
<input type="text" class="form-control" id="inputLast" placeholder="Last Name">
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-1 col-sm-10">
<input …Run Code Online (Sandbox Code Playgroud) html ×3
jekyll ×2
cloudflare ×1
coffeescript ×1
css ×1
dns ×1
forms ×1
framerjs ×1
gitlab ×1
hosting ×1
html-table ×1
javascript ×1
markdown ×1
modal-dialog ×1
submit ×1
validation ×1