font-family

What is the default font family in Android?

与世无争的帅哥 提交于 2019-11-26 19:08:07
问题 Starting in API 16, Jellybean Roboto was introduced as available font family to use. See whats "new" in Android 16 here. Specifying android:fontFamily="sans-serif" (Roboto in API 16+) on a TextView the default fontFamily of the TextView ? Is <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" /> equivalent to <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:fontFamily="sans-serif" /> ? From Material design typography

Do I need to wrap quotes around font family names in CSS?

喜欢而已 提交于 2019-11-26 18:37:11
I remember hearing a long time ago that it was considered "best practice" to wrap quotes around font names that contain multiple words in the CSS font-family property, like this: font-family: "Arial Narrow", Arial, Helvetica, sans-serif; For the heck of it, I tried removing the quotes from "Arial Narrow" and Safari and Firefox don't have any problem rendering it. So, is there any logic to this rule of thumb, or is it just a myth? Was it an issue with older browsers that no longer applies to the current versions? I've been doing this for so long that I never stopped to think if it was actually

SharePoint Designer - Workflow

被刻印的时光 ゝ 提交于 2019-11-26 11:33:36
另一篇文章 SharePoint 2013 - Designer Workflow 1. Set field in current item : 不要连续多次使用,否则在发布时会出现unexpected error;当需要同时更新几个字段时,使用update list item。 2. Error:   (1)Errors were found when compiling the workflow. The workflow files were saved but cannot be run. Unexpected error on server associating the workflow。 --------http://support.microsoft.com/kb/2557533 3. Wait for Field Change in Current Item: 可使用此活动将工作流停顿在某一步; 4. 获取InfoPath的文件名(含扩展名)时,可以用 'Name (for use in forms)',或者Title属性,但不要使用Name属性,因为Name属性不包含扩展名; 5. Email 模板 <head><style>TABLE.mail { border-style:none; border-collapse:collapse; font:8pt

日志埋点系统的架构与实现

三世轮回 提交于 2019-11-26 10:32:23
https://blog.csdn.net/Zbylant/article/details/90762000 https://www.jianshu.com/p/340a5b9bb4b8 <div class="rich_media_content" id="js_content"> <p style="text-align:center;"><span style="color:rgb(121,121,121);font-size:12px;letter-spacing:.544px;">戳上方蓝字 “</span><span style="font-size:12px;letter-spacing:.544px;color:rgb(79,129,189);">程序猿杂货铺</span><span style="color:rgb(121,121,121);font-size:12px;letter-spacing:.544px;">” 关注我 并 <strong>置顶星标</strong>!</span></p><p style="min-height:1em;letter-spacing:.544px;line-height:27.2px;font-family:'-apple-system-font', 'system-ui', 'Helvetica Neue',

vue中引入——富文本编辑器

帅比萌擦擦* 提交于 2019-11-25 21:57:19
首先链接 https://github.com/HaoChuan9421/vue-ueditor-wrap npm i vue-ueditor-wrap -S main.js import VueUeditorWrap from "vue-ueditor-wrap"; Vue.component("vue-ueditor-wrap", VueUeditorWrap); <template> <div class="container body-content"> <div class="plan-edit-box"> <vue-ueditor-wrap v-model="centerData.content" :config="myConfig"></vue-ueditor-wrap> </div> <div class="plan-edit-btn"> <el-button type="primary" @click="sureChangeHandler">确定</el-button> <el-button type="danger" @click="resetChangeHandler">重置</el-button> </div> </div> </template> <script> import { axiosPost } from "../../utils/fetch